Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for goodTest (0.13 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. platforms/software/reporting/src/integTest/groovy/org/gradle/api/reporting/plugins/BuildDashboardPluginIntegrationTest.groovy

            given:
            goodCode()
            goodTests()
            failingDependenciesForTestTask()
    
            when:
            runAndFail('check')
    
            then:
            !buildDashboardFile.exists()
        }
    
        void 'build dashboard is not generated if a dependency of the report generating task fails even with --continue'() {
            given:
            goodCode()
            goodTests()
            failingDependenciesForTestTask()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  4. 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)
  5. platforms/documentation/docs/src/docs/userguide/jvm/groovy_plugin.adoc

    * Changes to resources won't trigger a recompilation, this might result in some incorrectness — for example https://mrhaki.blogspot.com/2013/01/groovy-goodness-adding-extra-methods.html[Extension Modules].
    
    [[sec:groovy_cross_compilation]]
    == Compiling and testing for Java 6 or Java 7
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/ant.adoc

    [[sec:ant_properties]]
    == Using Ant properties and references
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 15:23:52 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. src/crypto/x509/verify_test.go

    		}
    	})
    
    	goodCert, err := certificateFromPEM(googleLeaf)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	t.Run("intermediate", func(t *testing.T) {
    		opts := VerifyOptions{
    			Intermediates: NewCertPool(),
    		}
    		opts.Intermediates.AddCert(badCert)
    		expectedErr := "SecCertificateCreateWithData: invalid certificate"
    		_, err = goodCert.Verify(opts)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
Back to top