Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 198 for attest (0.09 sec)

  1. platforms/documentation/docs/src/docs/dsl/org.gradle.nativeplatform.test.xctest.tasks.XCTest.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/collect/testing/TestsForMapsInJavaUtil.java

        suite.addTest(testsForLinkedHashMap());
        suite.addTest(testsForSynchronizedNavigableMap());
        suite.addTest(testsForTreeMapNatural());
        suite.addTest(testsForTreeMapWithComparator());
        suite.addTest(testsForUnmodifiableMap());
        suite.addTest(testsForUnmodifiableNavigableMap());
        suite.addTest(testsForUnmodifiableSortedMap());
        suite.addTest(testsForEnumMap());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  3. src/encoding/xml/xml_test.go

    }
    
    func TestProcInstEncoding(t *testing.T) {
    	for _, test := range procInstTests {
    		if got := procInst("version", test.input); got != test.expect[0] {
    			t.Errorf("procInst(version, %q) = %q; want %q", test.input, got, test.expect[0])
    		}
    		if got := procInst("encoding", test.input); got != test.expect[1] {
    			t.Errorf("procInst(encoding, %q) = %q; want %q", test.input, got, test.expect[1])
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/collect/testing/TestsForMapsInJavaUtil.java

      public Test allTests() {
        TestSuite suite = new TestSuite("java.util Maps");
        suite.addTest(testsForCheckedMap());
        suite.addTest(testsForCheckedSortedMap());
        suite.addTest(testsForEmptyMap());
        suite.addTest(testsForSingletonMap());
        suite.addTest(testsForHashMap());
        suite.addTest(testsForHashtable());
        suite.addTest(testsForLinkedHashMap());
        suite.addTest(testsForTreeMapNatural());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 17K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/ProjectHierarchyCustomizationIntegrationTest.groovy

                    task test { }
                }
                // should be 'project-a', not 'projectA'
                project(":modules:projectA:project-b") {
                    task test { }
                }
            """
    
            when:
            run("test")
    
            then:
            result.assertTasksExecuted(":modules:project-a:test", ":modules:projectA:project-b:test")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/img/xctest-task-graph.png

    xctest-task-graph.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  7. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/ScalaConcurrencyIntegrationTest.groovy

        @Issue("https://github.com/gradle/gradle/issues/14434")
        def "can run tests in parallel with project dependencies"() {
            given:
            httpServer.expectConcurrent(':a:test', ':b:test', ':c:test', ':d:test')
            httpServer.start()
    
            settingsFile << """
                include 'a', 'b', 'c', 'd'
            """
            buildFile << """
                allprojects {
                    tasks.withType(AbstractScalaCompile) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 16:10:12 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

    //
    // For example, this instantiates tests from test case BarTest each
    // with values "one", "two", and "three":
    //
    // INSTANTIATE_TEST_CASE_P(NumSequence, BarTest, Values("one", "two", "three"));
    //
    // This instantiates tests from test case BazTest each with values 1, 2, 3.5.
    // The exact type of values will depend on the type of parameter in BazTest.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

      static bool Create(const char* statement, const RE* regex,
                         const char* file, int line, DeathTest** test);
      DeathTest();
      virtual ~DeathTest() { }
    
      // A helper class that aborts a death test when it's deleted.
      class ReturnSentinel {
       public:
        explicit ReturnSentinel(DeathTest* test) : test_(test) { }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/JdtTest.groovy

     */
    package org.gradle.plugins.ide.eclipse.model
    
    import org.gradle.api.JavaVersion
    import org.gradle.api.internal.PropertiesTransformer
    
    import spock.lang.Specification
    
    class JdtTest extends Specification {
        final Jdt jdt = new Jdt(new PropertiesTransformer())
    
        def defaultsForJava1_3Source() {
            Properties properties = new Properties()
    
            when:
            jdt.loadDefaults()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top