Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 172 for testOk2 (0.14 sec)

  1. tests/test_tutorial/test_request_files/test_tutorial003.py

        path.write_bytes(b"<file content>")
        path2 = tmp_path / "test2.txt"
        path2.write_bytes(b"<file content2>")
    
        client = TestClient(app)
        with path.open("rb") as file, path2.open("rb") as file2:
            response = client.post(
                "/files/",
                files=(
                    ("files", ("test.txt", file)),
                    ("files", ("test2.txt", file2)),
                ),
            )
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  2. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDependencyArtifactsIntegrationTest.groovy

        }
    
        def "builds artifacts for dependencies on multiple subprojects in the same build"() {
            given:
            dependency 'org.test:b1:1.0'
            dependency 'org.test:b2:1.0'
    
            when:
            resolveArtifacts()
    
            then:
            executed ":buildB:b1:compileJava", ":buildB:b1:jar", ":buildB:b2:compileJava", ":buildB:b2:jar"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 06 13:06:28 UTC 2020
    - 21.1K bytes
    - Viewed (0)
  3. tests/test_tutorial/test_request_files/test_tutorial003_an_py39.py

        path.write_bytes(b"<file content>")
        path2 = tmp_path / "test2.txt"
        path2.write_bytes(b"<file content2>")
    
        client = TestClient(app)
        with path.open("rb") as file, path2.open("rb") as file2:
            response = client.post(
                "/files/",
                files=(
                    ("files", ("test.txt", file)),
                    ("files", ("test2.txt", file2)),
                ),
            )
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  4. src/cmd/internal/test2json/testdata/issue29755.test

        foo_test.go:22: output from root test
        foo_test.go:27: output from root test
        --- PASS: TestOutputWithSubtest/sub_test2 (0.00s)
            foo_test.go:21: output from sub test2
            foo_test.go:23: more output from sub test2
            foo_test.go:28: more output from sub test2
            --- PASS: TestOutputWithSubtest/sub_test2/sub2 (0.00s)
                foo_test.go:26: output from sub2 test
        foo_test.go:32: output after sub test
    FAIL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 01 16:13:47 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIsolationIntegrationTest.groovy

                output.count("Transforming test2-2.3.jar to test2-2.3.jar.txt") == 1
            } else {
                // Counter is isolated at execution time, so transforms will see the increment in each tasks' doLast { }
                output.count("Transforming") == 6
                output.count("Transforming test-1.3.jar to test-1.3.jar.txt") == 3
                output.count("Transforming test2-2.3.jar to test2-2.3.jar.txt") == 3
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/swift/testFiltering/groovy/src/test/swift/SomeIntegTest.swift

    import XCTest
    
    class SomeIntegTest: XCTestCase {
        public static var allTests = [
            ("test1", test1),
            ("test2", test2)
        ]
        func test1() {}
        func test2() {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 183 bytes
    - Viewed (0)
  7. src/cmd/internal/test2json/testdata/issue29755.json

    {"Action":"output","Test":"TestOutputWithSubtest/sub_test2","Output":"        foo_test.go:21: output from sub test2\n"}
    {"Action":"output","Test":"TestOutputWithSubtest/sub_test2","Output":"        foo_test.go:23: more output from sub test2\n"}
    {"Action":"output","Test":"TestOutputWithSubtest/sub_test2","Output":"        foo_test.go:28: more output from sub test2\n"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/testing/junitplatform-mix/kotlin/src/test/java/org/gradle/junitplatform/JUnit3Test.java

    package org.gradle.junitplatform;
    
    import junit.framework.TestCase;
    
    public class JUnit3Test extends TestCase {
        public void testOk() {
            System.out.println("Hello from JUnit 3!");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 198 bytes
    - Viewed (0)
  9. test/defer.go

    func test2helper() {
    	for i := 0; i < 10; i++ {
    		defer addDotDotDot(i)
    	}
    }
    
    func test2() {
    	result = ""
    	test2helper()
    	if result != "9876543210" {
    		fmt.Printf("test2: bad defer result (should be 9876543210): %q\n", result)
    		panic("defer")
    	}
    }
    
    func main() {
    	test1()
    	test2()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 12 18:17:49 UTC 2013
    - 875 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/testing/testng-groupbyinstances/kotlin/src/test/java/org/gradle/testng/TestFactory.java

        }
    
        @Test
        public void test1() {
            System.out.println("TestFactory[" + data + "].test1()");
        }
    
        @Test(dependsOnMethods = {"test1"})
        public void test2() {
            System.out.println("TestFactory[" + data + "].test2()");
        }
    
        @AfterClass
        public void afterClass() {
            System.out.println("TestFactory[" + data + "].afterClass()");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top