Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 261 for testSam (0.32 sec)

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

    # define TYPED_TEST(CaseName, TestName) \
      template <typename gtest_TypeParam_> \
      class GTEST_TEST_CLASS_NAME_(CaseName, TestName) \
          : public CaseName<gtest_TypeParam_> { \
       private: \
        typedef CaseName<gtest_TypeParam_> TestFixture; \
        typedef gtest_TypeParam_ TypeParam; \
        virtual void TestBody(); \
      }; \
      bool gtest_##CaseName##_##TestName##_registered_ GTEST_ATTRIBUTE_UNUSED_ = \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10K bytes
    - Viewed (0)
  2. pkg/controller/endpointslicemirroring/reconciler_helpers_test.go

    )
    
    func TestRecycleSlices(t *testing.T) {
    	testCases := []struct {
    		testName       string
    		startingSlices *slicesByAction
    		expectedSlices *slicesByAction
    	}{{
    		testName:       "Empty slices",
    		startingSlices: &slicesByAction{},
    		expectedSlices: &slicesByAction{},
    	}, {
    		testName: "1 to create and 1 to delete",
    		startingSlices: &slicesByAction{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 06 23:58:47 UTC 2021
    - 7K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/report/AllTestResults.java

            return packages.values();
        }
    
        public TestResult addTest(long classId, String className, String testName, long duration) {
            return addTest(classId, className, className, testName, testName, duration);
        }
    
        public TestResult addTest(long classId, String className, String classDisplayName, String testName, String testDisplayName, long duration) {
            PackageTestResults packageResults = addPackageForClass(className);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. pkg/util/tolerations/tolerations_test.go

    	tests := []struct {
    		testName  string
    		input     []string
    		whitelist []string
    		expected  bool
    	}{
    		{
    			testName:  "equal input and whitelist",
    			input:     []string{"foo-bar-nosched", "foo-baz-nosched"},
    			whitelist: []string{"foo-bar-nosched", "foo-baz-nosched"},
    			expected:  true,
    		},
    		{
    			testName:  "duplicate input allowed",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 26 22:25:49 UTC 2019
    - 11.4K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/dependencies/DefaultDependencyArtifactTest.java

        @Test
        public void testInit() {
            String testName = "name";
            String testType = "type";
            String testExtension = "ext";
            String testClassifier = "classifier";
            String testUrl = "url";
            DependencyArtifact artifact = new DefaultDependencyArtifact(testName, testType, testExtension, testClassifier, testUrl);
            assertEquals(testName, artifact.getName());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:16:41 UTC 2013
    - 1.5K bytes
    - Viewed (0)
  6. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/report/PackageTestResults.java

            return classes.values();
        }
    
        public TestResult addTest(long classId, String className, String testName, long duration) {
            return addTest(classId, className, className, testName, testName, duration);
        }
    
        public TestResult addTest(long classId, String className, String classDisplayName, String testName, String testDisplayName, long duration) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. pkg/quota/v1/evaluator/core/persistent_volume_claims_test.go

    		},
    	}
    	for testName, testCase := range testCases {
    		t.Run(testName, func(t *testing.T) {
    			featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.RecoverVolumeExpansionFailure, testCase.enableRecoverFromExpansion)
    			actual, err := evaluator.Usage(testCase.pvc)
    			if err != nil {
    				t.Errorf("%s unexpected error: %v", testName, err)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/tasks/testing/testng/TestNGOptionsTest.groovy

                useDefaultListeners == source.useDefaultListeners
                threadPoolFactoryClass == source.threadPoolFactoryClass
                suiteName == source.suiteName
                testName == source.testName
                suiteXmlFiles == source.suiteXmlFiles
                preserveOrder == source.preserveOrder
                groupByInstances == source.groupByInstances
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/x86/pcrelative_test.go

    	"os"
    	"path/filepath"
    	"testing"
    )
    
    const asmData = `
    GLOBL zeros<>(SB),8,$64
    TEXT ยทtestASM(SB),4,$0
    VMOVUPS zeros<>(SB), %s // PC relative relocation is off by 1, for Y8-Y15, Z8-15 and Z24-Z31
    RET
    `
    
    const goData = `
    package main
    
    func testASM()
    
    func main() {
    	testASM()
    }
    `
    
    func objdumpOutput(t *testing.T, mname, source string) []byte {
    	tmpdir, err := os.MkdirTemp("", mname)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 23:16:01 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. pkg/controller/endpointslicemirroring/reconciler_test.go

    		expectedClientActions    int
    		expectedMetrics          *expectedMetrics
    	}{{
    		testName:               "Endpoints with no subsets",
    		subsets:                []corev1.EndpointSubset{},
    		existingEndpointSlices: []*discovery.EndpointSlice{},
    		expectedNumSlices:      0,
    		expectedClientActions:  0,
    		expectedMetrics:        &expectedMetrics{},
    	}, {
    		testName: "Endpoints with no addresses",
    		subsets: []corev1.EndpointSubset{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 42.7K bytes
    - Viewed (0)
Back to top