Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for goodTest (0.1 sec)

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

                class TestNGTest {
                    @Test
                    void goodTest() {}
    
                    @Test(dependsOnMethods = ["goodTest"])
                    void badTest() {
                        beBad()
                    }
    
                    @Test(dependsOnMethods = ["badTest"])
                    void ignoredTest() {}
    
                    @Test(dependsOnMethods = ["goodTest"])
                    void printTest() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitConsoleLoggingIntegrationTest.groovy

            executer.noExtraLogging()
            testFile << """
                package org.gradle;
    
                ${testFrameworkImports}
    
                public class SomeTest {
                    @Test
                    public void goodTest() {}
    
                    @Test
                    public void badTest() {
                        beBad();
                    }
    
                    @Test
                    public void printTest() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:58:24 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. subprojects/core/src/testFixtures/groovy/org/gradle/util/JarUtils.groovy

                assert hasConfiguredManifest: "Must have manifest before entries. Use withoutManifest() to skip it explicitly."
            }
        }
    
        /**
         * A Manifest with additional goodies to make its configuration more pleasant.
         */
        static class ManifestWithDsl extends Manifest {
            /**
             * Configures this Manifest to be Multi-Release.
             */
            void multiRelease() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 07 19:17:11 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top