Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for TestTwo (0.32 sec)

  1. src/cmd/go/testdata/script/test_shuffle.txt

    stdout '^-test.shuffle 43'
    stdout '(?s)TestThree(.*)TestTwo(.*)TestOne(.*)TestThree(.*)TestTwo(.*)TestOne(.*)TestThree(.*)TestTwo(.*)TestOne(.*)TestThree(.*)TestTwo(.*)TestOne'
    
    go test -v -bench=. -shuffle=44 -count=2 foo_test.go
    stdout '^-test.shuffle 44'
    stdout '(?s)TestOne(.*)TestThree(.*)TestTwo(.*)TestOne(.*)TestThree(.*)TestTwo(.*)BenchmarkTwo(.*)BenchmarkOne(.*)BenchmarkThree(.*)'
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 20:46:11 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. testing/performance/src/templates/with-verbose-junit/Test.java

            }
            assertEquals(production.getProperty(), "value");
        }
    
        @org.junit.Test
        public void testTwo() {
            for (int i = 0; i < 1000; i++) {
                System.out.println("Some test output from ${testClassName}.testTwo - " + i);
                System.err.println("Some test error  from ${testClassName}.testTwo - " + i);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 991 bytes
    - Viewed (0)
  3. testing/internal-testing/src/test/groovy/org/gradle/util/TempDirIsUniquePerTestSpec.groovy

        def "testOne"() {
            when:
            tests << "testOne"
            tmpDirs << temp.testDirectory
    
            then:
            tests.size() == tmpDirs.size()
        }
    
        def "testTwo"() {
            when:
            tests << "testTwo"
            tmpDirs << temp.testDirectory
    
            then:
            tests.size() == tmpDirs.size()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. testing/performance/src/templates/with-verbose-testng/Test.java

            }
            assertEquals(production.getProperty(), "value");
        }
    
        @Test
        public void testTwo() {
            for (int i = 0; i < 1000; i++) {
                System.out.println("Some test output from ${testClassName}.testTwo - " + i);
                System.err.println("Some test error  from ${testClassName}.testTwo - " + i);
            }
            assertEquals(production.getProperty(), "value");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. testing/integ-test/src/integTest/groovy/org/gradle/integtests/fixture/TempDirIsUniquePerTestSpec.groovy

        def "testOne"() {
            when:
            tests << "testOne"
            tmpDirs << tmp.testDirectory
    
            then:
            tests.size() == tmpDirs.size()
        }
    
        def "testTwo"() {
            when:
            tests << "testTwo"
            tmpDirs << tmp.testDirectory
    
            then:
            tests.size() == tmpDirs.size()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/project-dynamism/pom-interp.xml

        <plugins>
          <plugin>
            <artifactId>my-plugin</artifactId>
            <configuration>
              <testOne>${project.groupId}</testOne>
              <testTwo>${pom.groupId}</testTwo>
              <testThree>${groupId}</testThree>
            </configuration>
          </plugin>
        </plugins>
      </build>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Nov 09 12:45:14 UTC 2019
    - 903 bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGTestFrameworkIntegrationTest.groovy

            file("src/test/java/DisabledTest.java") << """
                @org.testng.annotations.Test(enabled = false)
                public class DisabledTest {
                    public void testOne() {}
                    public void testTwo() {}
                }
            """
    
            when:
            executer.expectDocumentedDeprecationWarning("No test executed. This behavior has been deprecated. " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5K bytes
    - Viewed (0)
  8. src/net/http/serve_test.go

    		path     string
    		method   string
    		want     string
    		statusOk bool
    	}{
    		0: {"/testOne?this=that", "GET", "this=that", true},
    		1: {"/testTwo?foo=bar", "GET", "foo=bar", true},
    		2: {"/testTwo?a=1&b=2&a=3", "GET", "a=1&b=2&a=3", true},
    		3: {"/testTwo?", "GET", "", true},
    		4: {"/testThree?foo", "GET", "foo", true},
    		5: {"/testThree/?foo", "GET", "foo:bar", true},
    		6: {"/testThree?foo", "CONNECT", "foo", true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top