Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SomeIntegTest (0.17 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractCrossTaskIncrementalCompilationIntegrationTest.groovy

                dependencies { integTestImplementation project(":other") }
                dependencies { integTestImplementation localGroovy() }
            """
            file("impl/src/integTest/${language.name}/SomeIntegTest.${language.name}") << "class SomeIntegTest extends Other {}"
    
            impl.snapshot { run "compileIntegTest${language.capitalizedName}", language.compileTaskName }
    
            when: //when api class is changed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  2. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/java/SamplesJavaTestingIntegrationTest.groovy

            when:
            def result = succeeds("test")
    
            then: "the test task is executed"
            result.assertTaskExecuted(":test")
    
            and: "both tests in SomeIntegTest run and pass"
            def xmlResults = getTestResultsFileAsXml(dslDir, "SomeIntegTest")
            assertTestsRunCount(xmlResults, 2)
    
            and: "only the quickUiCheck test runs in SomeOtherTest"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 12.8K bytes
    - Viewed (0)
Back to top