Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for TestMethod2 (0.28 sec)

  1. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/DefaultTestLauncherTest.groovy

            }
        }
    
        def "test method requests with specific task added to test request"() {
            given:
            launcher.withTaskAndTestMethods("test", "clazz", ["testMethod1", "testMethod2"])
            when:
            launcher.run()
    
            then:
            1 * executor.run(_, _) >> { ConsumerAction action, ResultHandlerVersion1 handler ->
                action.run(connection)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/result/TestReportDataCollectorSpec.groovy

            fooTest.results.find { it.name == 'testMethod2' && it.endTime == 300 && it.duration == 50 }
        }
    
        def "writes test outputs for interleaved tests"() {
            def test = new DefaultTestDescriptor("1.1.1", "FooTest", "testMethod")
            def test2 = new DefaultTestDescriptor("1.1.2", "FooTest", "testMethod2")
            def suite = new DefaultTestSuiteDescriptor("1", "Suite")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testplugin/plugin_test.go

    	globalSkip(t)
    	goCmd(t, "build", "-buildmode=plugin", "-o", "plugin.so", "./method/plugin.go")
    	goCmd(t, "build", "-o", "method.exe", "./method/main.go")
    	run(t, "./method.exe")
    }
    
    func TestMethod2(t *testing.T) {
    	globalSkip(t)
    	goCmd(t, "build", "-buildmode=plugin", "-o", "method2.so", "./method2/plugin.go")
    	goCmd(t, "build", "-o", "method2.exe", "./method2/main.go")
    	run(t, "./method2.exe")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top