Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for TestA (0.04 sec)

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/IncrementalSwiftXCTestAddDiscoveryBundle.groovy

            List<XCTestCaseElement> testCases = [
                passingTestCase("testA"),
            ]
        }
    
        final XCTestSourceFileElement alternateFooTestSuite = new XCTestSourceFileElement("FooTestSuite") {
            List<XCTestCaseElement> testCases = [
                passingTestCase("testA"),
                passingTestCase("testB")
            ]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/CustomVersionListerIntegrationTest.groovy

                }
            }
            listerInteractions.expectRefresh('testA')
            succeeds 'checkDeps', '--refresh-dependencies'
    
            then:
            outputContains("Listing versions for module testA")
    
            where:
            lister               | modules
            'simple'             | [testA: [1, 2, 3]]
            'file on repository' | [testA: [1, 2, 3]]
        }
    
        void "can recover from broken lister"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/CustomVersionListerWithSupplierIntegrationTest.groovy

        private final static String ALL_METADATA = new JsonBuilder(
            [
                [group:'org', name: 'testA', version: '3', attributes: ['org.gradle.status': 'release', 'custom': 'foo']],
                [group:'org', name: 'testA', version: '2', attributes: ['org.gradle.status': 'integration', 'custom': 'bar']],
                [group:'org', name: 'testA', version: '1', attributes: ['org.gradle.status': 'release', 'custom': 'bar']],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/IncrementalSwiftXCTestRemoveDiscoveryBundle.groovy

            List<XCTestCaseElement> testCases = [
                passingTestCase("testA"),
                passingTestCase("testB")
            ]
        }
    
        final XCTestSourceFileElement alternateFooTestSuite = new XCTestSourceFileElement("FooTestSuite") {
            List<XCTestCaseElement> testCases = [
                passingTestCase("testA")
            ]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/build_patterns_outside_gopath.txt

    package x
    -- pkgs/a_test.go --
    package x_test
    
    import "testing"
    
    func TestX(t *testing.T) {
    }
    -- pkgs/a/a.go --
    package a
    -- pkgs/a/a_test.go --
    package a_test
    
    import "testing"
    
    func TestA(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 426 bytes
    - Viewed (0)
  6. src/cmd/cover/testdata/pkgcfg/a/a_test.go

    package a_test
    
    import (
    	"cfg/a"
    	"testing"
    )
    
    func TestA(t *testing.T) {
    	a.A(0)
    	var aat a.Atyp
    	at := &aat
    	at.Set(42)
    	println(at.Get())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:48:40 UTC 2022
    - 144 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/test_fail_fast.txt

    ! go test ./failfast_test.go -run='TestFailing[AB]' -failfast=false
    stdout -count=2 'FAIL - '
    
    # mix with non-failing tests
    ! go test ./failfast_test.go -run='TestA|TestFailing[AB]' -failfast=true
    stdout -count=1 'FAIL - '
    ! go test ./failfast_test.go -run='TestA|TestFailing[AB]' -failfast=false
    stdout -count=2 'FAIL - '
    
    # mix with parallel tests
    ! go test ./failfast_test.go -run='TestFailingB|TestParallelFailingA' -failfast=true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 19:25:24 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/PublishedCapabilitiesIntegrationTest.groovy

            given:
            repository {
                'org:testA:1.0' {
                    variant('runtime') {
                        capability('org', 'testA', '1.0')
                        capability('cap')
                    }
                }
                'org:testB:1.0' {
                    variant('runtime') {
                        capability('org', 'testB', '1.0')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/test_main_panic.txt

    ! stdout 'DATA RACE'
    -- main_panic/testmain_parallel_sub_panic_test.go --
    package testmain_parallel_sub_panic_test
    
    import "testing"
    
    func setup()    { println("setup()") }
    func teardown() { println("teardown()") }
    func TestA(t *testing.T) {
    	t.Run("1", func(t *testing.T) {
    		t.Run("1", func(t *testing.T) {
    			t.Parallel()
    			panic("A/1/1 panics")
    		})
    		t.Run("2", func(t *testing.T) {
    			t.Parallel()
    			println("A/1/2 is ok")
    		})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 19 21:07:59 UTC 2020
    - 603 bytes
    - Viewed (0)
  10. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/RemoteSourceDependencyIntegrationTest.groovy

    class RemoteSourceDependencyIntegrationTest extends AbstractIntegrationSpec {
        @Rule
        BlockingHttpServer httpServer = new BlockingHttpServer()
        @Rule
        GitHttpRepository repoA = new GitHttpRepository(httpServer, 'testA', temporaryFolder.getTestDirectory())
        @Rule
        GitHttpRepository repoB = new GitHttpRepository(httpServer, 'testB', temporaryFolder.getTestDirectory())
        @Rule
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.7K bytes
    - Viewed (0)
Back to top