Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 69 for DefaultTestExecutionResult (2.37 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGDryRunFilteringIntegrationTest.groovy

                        System.err.println("Run bar!");
                    }
                }
            """
    
            when:
            def testResult = new DefaultTestExecutionResult(testDirectory)
            def dryRunTestResult = new DefaultTestExecutionResult(testDirectory, 'build', '', '', 'dryRunTest')
            run "dryRunTest", "test"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitSmokeMultiVersionIntegrationTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.testing.junit
    
    import org.gradle.integtests.fixtures.DefaultTestExecutionResult
    import org.gradle.integtests.fixtures.TestClassExecutionResult
    import org.gradle.testing.fixture.AbstractTestingMultiVersionIntegrationTest
    
    import static org.hamcrest.CoreMatchers.containsString
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4SuitesIntegrationTest.groovy

                    exclude '**/*Test.class'
                }
            """.stripIndent()
            when:
            executer.withTasks('test').run()
    
            then:
            DefaultTestExecutionResult result = new DefaultTestExecutionResult(testDirectory)
            result.assertTestClassesExecuted('org.gradle.ASuite', 'org.gradle.OkTest', 'org.gradle.OtherTest')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitTestClassDetectionIntegrationTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.testing.junit
    
    import org.gradle.integtests.fixtures.DefaultTestExecutionResult
    import org.gradle.testing.fixture.AbstractTestingMultiVersionIntegrationTest
    import spock.lang.Issue
    
    abstract class AbstractJUnitTestClassDetectionIntegrationTest extends AbstractTestingMultiVersionIntegrationTest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitSpockIntegrationTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.testing.junit
    
    import org.gradle.integtests.fixtures.DefaultTestExecutionResult
    import org.gradle.testing.fixture.AbstractTestingMultiVersionIntegrationTest
    import spock.lang.Issue
    
    abstract class AbstractJUnitSpockIntegrationTest extends AbstractTestingMultiVersionIntegrationTest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGParallelSuiteIntegrationTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    
    package org.gradle.testing.testng
    
    import org.gradle.integtests.fixtures.DefaultTestExecutionResult
    import org.gradle.integtests.fixtures.MultiVersionIntegrationSpec
    import org.gradle.integtests.fixtures.TargetCoverage
    import org.gradle.testing.fixture.TestNGCoverage
    import spock.lang.Issue
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGSuiteIntegrationTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    
    package org.gradle.testing.testng
    
    import org.gradle.integtests.fixtures.DefaultTestExecutionResult
    import org.gradle.integtests.fixtures.MultiVersionIntegrationSpec
    import org.gradle.integtests.fixtures.TargetCoverage
    import org.gradle.testing.fixture.TestNGCoverage
    import spock.lang.Issue
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitClassLevelFilteringIntegrationTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    
    package org.gradle.testing.junit
    
    import org.gradle.integtests.fixtures.DefaultTestExecutionResult
    import org.gradle.testing.fixture.AbstractTestingMultiVersionIntegrationTest
    
    abstract class AbstractJUnitClassLevelFilteringIntegrationTest extends AbstractTestingMultiVersionIntegrationTest {
    
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4JUnitIntegrationTest.groovy

                    ${configureTestFramework}
                }
            """.stripIndent()
    
            when:
            executer.withTasks('test').run()
    
            then:
            DefaultTestExecutionResult result = new DefaultTestExecutionResult(testDirectory)
            result.assertTestClassesExecuted('org.gradle.ExecutionOrderTest')
            result.testClass('org.gradle.ExecutionOrderTest').assertTestPassed('classUnderTestIsLoadedOnlyByRunner')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitIgnoreClassIntegrationTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.testing.junit
    
    import org.gradle.integtests.fixtures.DefaultTestExecutionResult
    import org.gradle.testing.fixture.AbstractTestingMultiVersionIntegrationTest
    
    abstract class AbstractJUnitIgnoreClassIntegrationTest extends AbstractTestingMultiVersionIntegrationTest {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top