Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for cleanupTest (0.18 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/TestLauncherTaskExecutionCrossVersionSpec.groovy

                            .withTestsFor(s -> s.forTaskPath(":test")
                            .includeMethod('MyTest', 'pass'))
                            .forTasks("cleanupTest")
                            .run()
            }
    
            then:
            tasksExecutedInOrder(':setupTest', ':test', ':cleanupTest')
    
            when:
            withConnection { connection ->
                TestLauncher testLauncher = connection.newTestLauncher()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/testing/testng-java-passing/groovy/src/test/java/org/gradle/TestCleanup.java

    package org.gradle;
    
    import org.testng.annotations.AfterTest;
    
    public class TestCleanup {
        @AfterTest
        public void cleanupTest() {
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 145 bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/SampleTestNGIntegrationTest.groovy

            result.testClass('org.gradle.TestSetup').assertConfigMethodPassed('setupTest')
            result.testClass('org.gradle.TestCleanup').assertConfigMethodPassed('cleanupTest')
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. tools/istio-clean-iptables/pkg/cmd/cleanup_test.go

    Ben Leggett <******@****.***> 1710179183 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. pkg/proxy/conntrack/cleanup_test.go

    Dan Winship <******@****.***> 1703283879 -0500
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 15 18:09:05 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/test_fuzz_cleanup.txt

    # stdout and stderr is connected to the coordinator's, but it should eventually
    # be connected to os.DevNull, so we wouldn't see t.Log output.
    
    -- go.mod --
    module cleanup
    
    go 1.15
    -- cleanup_test.go --
    package cleanup
    
    import (
    	"runtime"
    	"testing"
    )
    
    func FuzzTargetSkip(f *testing.F) {
    	f.Cleanup(func() { f.Log("cleanup") })
    	f.Skip()
    }
    
    func FuzzTargetFatal(f *testing.F) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. src/net/http/fcgi/fcgi_test.go

    	makeRecord(typeParams, 1, nil),
    	// begin sending body of request 1
    	makeRecord(typeStdin, 1, []byte("0123456789abcdef")),
    },
    	nil)
    
    var cleanUpTests = []struct {
    	input []byte
    	err   error
    }{
    	// confirm that child.handleRecord closes req.pw after aborting req
    	{
    		bytes.Join([][]byte{
    			streamBeginTypeStdin,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 11 18:51:39 UTC 2023
    - 10.6K bytes
    - Viewed (0)
Back to top