Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for testminio (0.45 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

                  TestCase::TearDownTestCase,
                  test_info->test_meta_factory->CreateTestFactory(*param_it));
            }  // for param_it
          }  // for gen_it
        }  // for test_it
      }  // RegisterTests
    
     private:
      // LocalTestInfo structure keeps information about a single test registered
      // with TEST_P macro.
      struct TestInfo {
        TestInfo(const char* a_test_case_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)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

                  TestCase::TearDownTestCase,
                  test_info->test_meta_factory->CreateTestFactory(*param_it));
            }  // for param_it
          }  // for gen_it
        }  // for test_it
      }  // RegisterTests
    
     private:
      // LocalTestInfo structure keeps information about a single test registered
      // with TEST_P macro.
      struct TestInfo {
        TestInfo(const char* a_test_case_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)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/TestLauncherSpec.groovy

                    }
                }
                false
            }
        }
    
        boolean hasTestDescriptor(testInfo) {
            def collect = events.tests.collect { it.descriptor }
            !findTestDescriptors(collect, testInfo.className, testInfo.methodName, testInfo.task, testInfo.displayName).isEmpty()
        }
    
    
        void collectDescriptorsFromBuild() {
            try {
                withConnection {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:42:44 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/platform/JUnitPlatformUserGuideIntegrationTest.groovy

    import org.junit.jupiter.api.*;
    
    @DisplayName("TestInfo Demo")
    class TestInfoDemo {
    
        TestInfoDemo(TestInfo testInfo) {
            assertEquals("TestInfo Demo", testInfo.getDisplayName());
        }
    
        @BeforeEach
        void init(TestInfo testInfo) {
            String displayName = testInfo.getDisplayName();
            assertTrue(displayName.equals("TEST 1") || displayName.equals("test2()"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    //   factory:          pointer to the factory that creates a test object.
    //                     The newly created TestInfo instance will assume
    //                     ownership of the factory object.
    GTEST_API_ TestInfo* MakeAndRegisterTestInfo(
        const char* test_case_name,
        const char* name,
        const char* type_param,
        const char* value_param,
        TypeId fixture_class_id,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    //   factory:          pointer to the factory that creates a test object.
    //                     The newly created TestInfo instance will assume
    //                     ownership of the factory object.
    GTEST_API_ TestInfo* MakeAndRegisterTestInfo(
        const char* test_case_name,
        const char* name,
        const char* type_param,
        const char* value_param,
        TypeId fixture_class_id,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/IdeaPlugin.java

                    runtimeMinus.add(providedRuntime);
                    Collection<Configuration> testMinus = ideaModule.getModule().getScopes().get(GeneratedIdeaScope.TEST.name()).get(IdeaDependenciesProvider.SCOPE_MINUS);
                    testMinus.add(providedRuntime);
                }
            });
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 12 14:00:13 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/primitives/UnsignedLongTest.java

            UnsignedLong unsignedSum = aUnsigned.plus(bUnsigned);
            assertThat(unsignedSum.longValue()).isEqualTo(expected);
          }
        }
      }
    
      public void testMinus() {
        for (long a : TEST_LONGS) {
          for (long b : TEST_LONGS) {
            UnsignedLong aUnsigned = UnsignedLong.fromLongBits(a);
            UnsignedLong bUnsigned = UnsignedLong.fromLongBits(b);
            long expected =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 06 16:10:08 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/load/test.go

    		if err != nil && pmain.Error == nil {
    			pmain.Error = &PackageError{Err: err}
    			pmain.Incomplete = true
    		}
    		// Set TestmainGo even if it is empty: the presence of a TestmainGo
    		// indicates that this package is, in fact, a test main.
    		pmain.Internal.TestmainGo = &data
    	}
    
    	if done != nil {
    		go func() {
    			parallelizablePart()
    			done()
    		}()
    	} else {
    		parallelizablePart()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/primitives/UnsignedLongsTest.java

      }
    
      public void testMin_noArgs() {
        try {
          UnsignedLongs.min();
          fail();
        } catch (IllegalArgumentException expected) {
        }
      }
    
      public void testMin() {
        assertThat(UnsignedLongs.min(LEAST)).isEqualTo(LEAST);
        assertThat(UnsignedLongs.min(GREATEST)).isEqualTo(GREATEST);
        assertThat(
                UnsignedLongs.min(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:36:17 UTC 2024
    - 13.2K bytes
    - Viewed (0)
Back to top