Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 367 for testOk (0.17 sec)

  1. android/guava-tests/test/com/google/common/reflect/test.txt

    ronshapiro <******@****.***> 1493156110 -0700
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 26 14:31:13 UTC 2017
    - 45 bytes
    - Viewed (0)
  2. src/cmd/distpack/test.go

    				log.Fatalf("unexpected source archive file: %s (generated by dist)", f.Name)
    			}
    		}
    	}
    }
    
    func testZip(a *Archive) { test("binary", a, zipRules) }
    func testMod(a *Archive) { test("module", a, modRules) }
    
    func test(kind string, a *Archive, rules []testRule) {
    	ok := true
    	have := make([]bool, len(rules))
    	for _, f := range a.Files {
    		for i, r := range rules {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 22:29:19 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. src/cmd/internal/test2json/testdata/frame.test

    Russ Cox <******@****.***> 1665692026 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 19:50:36 UTC 2022
    - 163 bytes
    - Viewed (0)
  4. src/cmd/internal/test2json/testdata/framebig.test

    Russ Cox <******@****.***> 1665692026 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 19:50:36 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  5. 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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 01 16:13:47 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/ant/useAntType/kotlin/libs/test.jar

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - Viewed (0)
  7. platforms/software/testing-base/src/integTest/resources/org/gradle/testing/TestExecutionBuildOperationsIntegrationTest/emitsBuildOperationsForJUnitTests/src/test/java/org/gradle/Test.java

     * limitations under the License.
     */
    
    package org.gradle;
    
    import org.junit.Assert;
    
    public class Test {
    
        @org.junit.Test
        public void ok() {
            System.out.println("sys out ok");
            System.err.println("sys err ok");
        }
    
        @org.junit.Test
        public void fail() {
            Assert.fail();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 895 bytes
    - Viewed (0)
  8. testing/performance/src/templates/project-with-source/Test.java

    package ${packageName};
    
    import static org.junit.Assert.*;
    
    public class ${testClassName} {
        private final ${productionClassName} production = new ${productionClassName}("value");
    
        @org.junit.Test
        public void test() {
            assertEquals(production.getProperty(), "value");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 294 bytes
    - Viewed (0)
  9. testing/performance/src/templates/with-junit/Test.java

        private final ${productionClassName} production = new ${productionClassName}("value");
    
    <% (binding.hasVariable("testMethodCount") ? testMethodCount : 20).times { index ->  %>
        @org.junit.Test
        public void test${index}() {
            assertEquals(production.getProperty(), "value");
        }
    <% } %>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 399 bytes
    - Viewed (0)
  10. docs/de/docs/advanced/async-tests.md

    # Asynchrone Tests
    
    Sie haben bereits gesehen, wie Sie Ihre **FastAPI**-Anwendungen mit dem bereitgestellten `TestClient` testen. Bisher haben Sie nur gesehen, wie man synchrone Tests schreibt, ohne `async`hrone Funktionen zu verwenden.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:25:57 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top