Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for testminio (0.15 sec)

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

        return test_info->is_reportable() && test_info->is_disabled_;
      }
    
      // Returns true iff test is disabled.
      static bool TestDisabled(const TestInfo* test_info) {
        return test_info->is_disabled_;
      }
    
      // Returns true iff this test will appear in the XML report.
      static bool TestReportable(const TestInfo* test_info) {
        return test_info->is_reportable();
      }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

        return test_info->is_reportable() && test_info->is_disabled_;
      }
    
      // Returns true iff test is disabled.
      static bool TestDisabled(const TestInfo* test_info) {
        return test_info->is_disabled_;
      }
    
      // Returns true iff this test will appear in the XML report.
      static bool TestReportable(const TestInfo* test_info) {
        return test_info->is_reportable();
      }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/test/test.go

    		pmain.Internal.OmitDebug = false
    	}
    
    	if !cfg.BuildN {
    		// writeTestmain writes _testmain.go,
    		// using the test description gathered in t.
    		if err := os.WriteFile(testDir+"_testmain.go", *pmain.Internal.TestmainGo, 0666); err != nil {
    			return nil, nil, nil, err
    		}
    	}
    
    	// Set compile objdir to testDir we've already created,
    	// so that the default file path stripping applies to _testmain.go.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. src/math/all_test.go

    		if f := Max(vffdim2SC[i][0], vffdim2SC[i][1]); !alike(fmaxSC[i], f) {
    			t.Errorf("Max(%g, %g) = %g, want %g", vffdim2SC[i][0], vffdim2SC[i][1], f, fmaxSC[i])
    		}
    	}
    }
    
    func TestMin(t *testing.T) {
    	for i := 0; i < len(vf); i++ {
    		if f := Min(vf[i], floor[i]); floor[i] != f {
    			t.Errorf("Min(%g, %g) = %g, want %g", vf[i], floor[i], f, floor[i])
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
Back to top