Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 69 for FooTest (0.11 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    // these names:
    //
    //    * InstantiationName/FooTest.DoesBlah/0 for "meeny"
    //    * InstantiationName/FooTest.DoesBlah/1 for "miny"
    //    * InstantiationName/FooTest.DoesBlah/2 for "moe"
    //    * InstantiationName/FooTest.HasBlahBlah/0 for "meeny"
    //    * InstantiationName/FooTest.HasBlahBlah/1 for "miny"
    //    * InstantiationName/FooTest.HasBlahBlah/2 for "moe"
    //
    // You can use these names in --gtest_filter.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 74.1K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache-packaging/src/test/groovy/org/gradle/caching/internal/packaging/impl/RelativePathParserTest.groovy

            then:
            0 * exitHandler.run()
            !outsideOfRoot
    
            when:
            outsideOfRoot = parser.nextPath("tree-reports.html.destination/classes/FooTest.html", false, exitHandler)
            then:
            0 * exitHandler.run()
            !outsideOfRoot
    
            when:
            outsideOfRoot = parser.nextPath("tree-reports.html.destination/css/", true, exitHandler)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // to be used a TEST_F.  For example:
    //
    //   class FooTest : public testing::Test {
    //    protected:
    //     virtual void SetUp() { ... }
    //     virtual void TearDown() { ... }
    //     ...
    //   };
    //
    //   TEST_F(FooTest, Bar) { ... }
    //   TEST_F(FooTest, Baz) { ... }
    //
    // Test is not copyable.
    class GTEST_API_ Test {
     public:
      friend class TestInfo;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    // to be used a TEST_F.  For example:
    //
    //   class FooTest : public testing::Test {
    //    protected:
    //     virtual void SetUp() { ... }
    //     virtual void TearDown() { ... }
    //     ...
    //   };
    //
    //   TEST_F(FooTest, Bar) { ... }
    //   TEST_F(FooTest, Baz) { ... }
    //
    // Test is not copyable.
    class GTEST_API_ Test {
     public:
      friend class TestInfo;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/TestFailureProgressEventCrossVersionTest.groovy

                    testCompileOnly 'junit:junit:3.8.1'
                    testRuntimeOnly 'junit:junit:4.13.2'
                }
            """
            file("src/test/java/FooTest.java") << """
                import junit.framework.*;
    
                public class FooTest extends TestCase {
                    public void testFail() {
                        assertEquals("String are not equal:", "foo", "bar");
                    }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 22.1K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileIntegrationTest.groovy

                package com.example;
    
                public class Foo {}
            """
            file("src/test/java/com/example/FooTest.java") << """
                package com.example;
    
                import org.junit.Test;
    
                public class FooTest {
                    @Test
                    public void test() {
                        new com.example.Foo();
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

      // test_case_name is the base name of the test case (without invocation
      // prefix). test_base_name is the name of an individual test without
      // parameter index. For the test SequenceA/FooTest.DoBar/1 FooTest is
      // test case base name and DoBar is test base name.
      void AddTestPattern(const char* test_case_name,
                          const char* test_base_name,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

      // test_case_name is the base name of the test case (without invocation
      // prefix). test_base_name is the name of an individual test without
      // parameter index. For the test SequenceA/FooTest.DoBar/1 FooTest is
      // test case base name and DoBar is test base name.
      void AddTestPattern(const char* test_case_name,
                          const char* test_base_name,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

        // "a.b.Foo" -> a.b.Foo.class
        TreeMap<String, Class<?>> classMap = Maps.newTreeMap();
        for (Class<?> cls : classes) {
          classMap.put(cls.getName(), cls);
        }
        // Foo.class -> [FooTest.class, FooTests.class, FooTestSuite.class, ...]
        Multimap<Class<?>, Class<?>> testClasses = HashMultimap.create();
        LinkedHashSet<Class<?>> candidateClasses = Sets.newLinkedHashSet();
        for (Class<?> cls : classes) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

        // "a.b.Foo" -> a.b.Foo.class
        TreeMap<String, Class<?>> classMap = Maps.newTreeMap();
        for (Class<?> cls : classes) {
          classMap.put(cls.getName(), cls);
        }
        // Foo.class -> [FooTest.class, FooTests.class, FooTestSuite.class, ...]
        Multimap<Class<?>, Class<?>> testClasses = HashMultimap.create();
        LinkedHashSet<Class<?>> candidateClasses = Sets.newLinkedHashSet();
        for (Class<?> cls : classes) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
Back to top