Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for TestResult$1 (0.12 sec)

  1. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/results/StateTrackingTestResultProcessorTest.groovy

            1 * listener.started({it.descriptor == broken && it.parent.descriptor == suite}, _)
            1 * listener.completed({it.descriptor == ok}, _ as TestResult, _)
            1 * listener.completed({it.descriptor == broken}, _ as TestResult, _)
            1 * listener.completed({it.descriptor == suite}, { it.testCount == 2 && it.failedTestCount == 1 && it.successfulTestCount == 1 }, _)
            0 * _
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/operations/TestListenerBuildOperationAdapterTest.groovy

                assert it[1].startTime == 0
                assert it[1].endTime == 500
                assert it[1].failure == null // not exposing test failures as operation failures
                assert it[1].result.result == testResult
            }
            1 * clock.currentTime >> 500
            0 * buildOperationIdFactory.nextId()
        }
    
        def "test output is exposed as progress"() {
            setup:
            _ * clock.currentTime >> 0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api-builders/src/test/groovy/org/gradle/tooling/internal/provider/runner/TestExecutionResultEvaluatorTest.groovy

            testDescriptorInternal.getName() >> "someTest"
            testDescriptorInternal.getClassName() >> "acme.SomeTestClass"
    
            def testResult = Mock(TestResult)
            1 * testResult.getTestCount() >> 1
            1 * testResult.getFailedTestCount() >> 1
    
            def testTask = Mock(TaskInternal)
            1 * testTask.getPath() >> ":someproject:someTestTask"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    private void findCommonPrefix(); private void findCommonSuffix(); private String computeCommonPrefix(); private String computeCommonSuffix(); private boolean areStringsEqual(); } junit/framework/TestResult$1.class package junit.framework; synchronized class TestResult$1 implements Protectable { void TestResult$1(TestResult, TestCase); public void protect() throws Throwable; } junit/framework/TestSuite$1.class package junit.framework; final synchronized class TestSuite$1 extends TestCase { void TestSuite$1(String,...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 373.7K bytes
    - Viewed (0)
Back to top