Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 75 for testname1 (3.6 sec)

  1. testing/internal-testing/src/main/groovy/org/gradle/integtests/fixtures/DefaultTestExecutionResult.groovy

        static String removeParentheses(String testName) {
            testName.size() > 2 && testName.endsWith('()') ? testName[0..-3] : testName
        }
    
        static String[] removeAllParentheses(String... testNames) {
            testNames.collect { removeParentheses(it) } as String[]
        }
    
        static String[][] removeAllParentheses(String[]... testNames) {
            testNames.collect { [removeParentheses(it[0]), it[1]] } as String[][]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. testing/internal-testing/src/main/groovy/org/gradle/integtests/fixtures/HtmlTestExecutionResult.groovy

                    def testDisplayName = it.textNodes().first().wholeText.trim()
                    def testName = hasMethodNameColumn() ? it.nextElementSibling().text() : testDisplayName
                    def failureMessage = getFailureMessages(testName)
                    def testCase = testCase(testName, testDisplayName, failureMessage)
                    testsExecuted << testCase
                    target << testCase
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/BaseCrossBuildResultsStore.java

                            String testName = testExecutions.getString(2);
                            String testProject = testExecutions.getString(3);
                            if (testProject != null && testClass != null) {
                                testNames.add(new PerformanceExperiment(testProject, new PerformanceScenario(testClass, testName)));
                            }
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    #define GTEST_TEST_CLASS_NAME_(test_case_name, test_name) \
      test_case_name##_##test_name##_Test
    
    // Helper macro for defining tests.
    #define GTEST_TEST_(test_case_name, test_name, parent_class, parent_id)\
    class GTEST_TEST_CLASS_NAME_(test_case_name, test_name) : public parent_class {\
     public:\
      GTEST_TEST_CLASS_NAME_(test_case_name, test_name)() {}\
     private:\
      virtual void TestBody();\
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    #define GTEST_TEST_CLASS_NAME_(test_case_name, test_name) \
      test_case_name##_##test_name##_Test
    
    // Helper macro for defining tests.
    #define GTEST_TEST_(test_case_name, test_name, parent_class, parent_id)\
    class GTEST_TEST_CLASS_NAME_(test_case_name, test_name) : public parent_class {\
     public:\
      GTEST_TEST_CLASS_NAME_(test_case_name, test_name)() {}\
     private:\
      virtual void TestBody();\
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossVersionResultsStore.java

                ) {
                    List<PerformanceExperiment> testNames = new ArrayList<>();
                    while (testExecutions.next()) {
                        String testClass = testExecutions.getString(1);
                        String testId = testExecutions.getString(2);
                        String testProject = testExecutions.getString(3);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20K bytes
    - Viewed (0)
  7. pkg/bootstrap/option/instances_test.go

    		{
    			testName: "zone",
    			key:      "zone",
    			option:   option.Zone("fake"),
    			expected: "fake",
    		},
    		{
    			testName: "sub zone",
    			key:      "sub_zone",
    			option:   option.SubZone("fake"),
    			expected: "fake",
    		},
    		{
    			testName: "node metadata nil",
    			key:      "meta_json_str",
    			option:   option.NodeMetadata(nil, nil),
    			expected: nil,
    		},
    		{
    			testName: "node metadata",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  8. pkg/kubelet/preemption/preemption_test.go

    		} else if r.expectErr && outErr == nil {
    			t.Errorf("evictPodsToFreeRequests expected an error but returned a successful output=%v during the %s test.", outputPods, r.testName)
    		} else if !podListEqual(r.expectedOutput, outputPods) {
    			t.Errorf("evictPodsToFreeRequests expected %v but got %v during the %s test.", r.expectedOutput, outputPods, r.testName)
    		}
    		podKiller.clear()
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jul 24 10:04:08 UTC 2022
    - 19.2K bytes
    - Viewed (0)
  9. pkg/controlplane/reconcilers/instancecount_test.go

    func TestMasterCountEndpointReconciler(t *testing.T) {
    	reconcileTests := []struct {
    		testName          string
    		serviceName       string
    		ip                string
    		endpointPorts     []corev1.EndpointPort
    		additionalMasters int
    		initialState      []runtime.Object
    		expectUpdate      []runtime.Object
    		expectCreate      []runtime.Object
    	}{
    		{
    			testName:      "no existing endpoints",
    			serviceName:   "foo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 27 12:46:24 UTC 2022
    - 14K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/quota/v1/resources_test.go

    				corev1.ResourcePods:   resource.MustParse("1"),
    			},
    			expected: false,
    		},
    	}
    	for testName, testCase := range testCases {
    		if result := Equals(testCase.a, testCase.b); result != testCase.expected {
    			t.Errorf("%s expected: %v, actual: %v, a=%v, b=%v", testName, testCase.expected, result, testCase.a, testCase.b)
    		}
    	}
    }
    
    func TestLessThanOrEqual(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 12 01:57:38 UTC 2021
    - 15.6K bytes
    - Viewed (0)
Back to top