Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for findTestClassStartsWith (0.25 sec)

  1. testing/internal-testing/src/main/groovy/org/gradle/integtests/fixtures/JUnitXmlTestExecutionResult.groovy

            return new JUnitTestClassExecutionResult(findTestClass(testClass), testClass, testClass, outputAssociation)
        }
    
        TestClassExecutionResult testClassStartsWith(String testClass) {
            def matching = findTestClassStartsWith(testClass)
            return new JUnitTestClassExecutionResult(matching[1], matching[0], matching[0], outputAssociation)
        }
    
        @Override
        int getTotalNumberOfTestClassesExecuted() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/TestNGExecutionResult.groovy

            return new TestNgTestClassExecutionResult(testClass, findTestClass(testClass))
        }
    
        @Override
        TestClassExecutionResult testClassStartsWith(String testClass) {
            def matching = findTestClassStartsWith(testClass)
            return new TestNgTestClassExecutionResult(matching.key, matching.value)
        }
    
        @Override
        int getTotalNumberOfTestClassesExecuted() {
            return getExecutedTestClasses().size()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top