Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 623 for itest (0.04 sec)

  1. test/ken/shift.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test shift.
    
    package main
    
    var	ians	[18]int;
    var	uans	[18]uint;
    var	pass	string;
    
    func
    testi(i int, t1,t2,t3 int) {
    	n := ((t1*3) + t2)*2 + t3;
    	if i != ians[n] {
    		print("itest ", t1,t2,t3,pass,
    			" is ", i, " sb ", ians[n], "\n");
    	}
    }
    
    func
    index(t1,t2,t3 int) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 2.3K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestFilteringIntegrationTest.groovy

    		public class ATest {
                    @Test public void test() { System.out.println("ATest!"); }
                }
            """
            file('src/test/java/BTest.java') << """
                ${testFrameworkImports}
                public class BTest {
                    @Test public void test() { System.out.println("BTest!"); }
                }
            """
            file('src/test/java/CTest.java') << """
                ${testFrameworkImports}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-test-part.h

    #ifndef GTEST_INCLUDE_GTEST_GTEST_TEST_PART_H_
    #define GTEST_INCLUDE_GTEST_GTEST_TEST_PART_H_
    
    #include <iosfwd>
    #include <vector>
    #include "gtest/internal/gtest-internal.h"
    #include "gtest/internal/gtest-string.h"
    
    namespace testing {
    
    // A copyable object representing the result of a test part (i.e. an
    // assertion or an explicit FAIL(), ADD_FAILURE(), or SUCCESS()).
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-test-part.h

    #ifndef GTEST_INCLUDE_GTEST_GTEST_TEST_PART_H_
    #define GTEST_INCLUDE_GTEST_GTEST_TEST_PART_H_
    
    #include <iosfwd>
    #include <vector>
    #include "gtest/internal/gtest-internal.h"
    #include "gtest/internal/gtest-string.h"
    
    namespace testing {
    
    // A copyable object representing the result of a test part (i.e. an
    // assertion or an explicit FAIL(), ADD_FAILURE(), or SUCCESS()).
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

    #endif  // 0
    
    #include "gtest/internal/gtest-port.h"
    #include "gtest/internal/gtest-type-util.h"
    
    // Implements typed tests.
    
    #if GTEST_HAS_TYPED_TEST
    
    // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.
    //
    // Expands to the name of the typedef for the type parameters of the
    // given test case.
    # define GTEST_TYPE_PARAMS_(TestCaseName) gtest_type_params_##TestCaseName##_
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/test.go

    	stk.Pop()
    
    	// Test package.
    	if len(p.TestGoFiles) > 0 || p.Name == "main" || cover != nil && cover.Local {
    		ptest = new(Package)
    		*ptest = *p
    		ptest.Error = ptestErr
    		ptest.Incomplete = incomplete
    		ptest.ForTest = p.ImportPath
    		ptest.GoFiles = nil
    		ptest.GoFiles = append(ptest.GoFiles, p.GoFiles...)
    		ptest.GoFiles = append(ptest.GoFiles, p.TestGoFiles...)
    		ptest.Target = ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    //
    // The Google C++ Testing Framework (Google Test)
    //
    // This header file defines the public API for death tests.  It is
    // #included by gtest.h so a user doesn't need to include this
    // directly.
    
    #ifndef GTEST_INCLUDE_GTEST_GTEST_DEATH_TEST_H_
    #define GTEST_INCLUDE_GTEST_GTEST_DEATH_TEST_H_
    
    #include "gtest/internal/gtest-death-test-internal.h"
    
    namespace testing {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

    #endif  // 0
    
    #include "gtest/internal/gtest-port.h"
    #include "gtest/internal/gtest-type-util.h"
    
    // Implements typed tests.
    
    #if GTEST_HAS_TYPED_TEST
    
    // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.
    //
    // Expands to the name of the typedef for the type parameters of the
    // given test case.
    # define GTEST_TYPE_PARAMS_(TestCaseName) gtest_type_params_##TestCaseName##_
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    //
    // The Google C++ Testing Framework (Google Test)
    //
    // This header file defines the public API for death tests.  It is
    // #included by gtest.h so a user doesn't need to include this
    // directly.
    
    #ifndef GTEST_INCLUDE_GTEST_GTEST_DEATH_TEST_H_
    #define GTEST_INCLUDE_GTEST_GTEST_DEATH_TEST_H_
    
    #include "gtest/internal/gtest-death-test-internal.h"
    
    namespace testing {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

    }
    
    #endif  // 0
    
    #include "gtest/internal/gtest-port.h"
    
    #if !GTEST_OS_SYMBIAN
    # include <utility>
    #endif
    
    // scripts/fuse_gtest.py depends on gtest's own header being #included
    // *unconditionally*.  Therefore these #includes cannot be moved
    // inside #if GTEST_HAS_PARAM_TEST.
    #include "gtest/internal/gtest-internal.h"
    #include "gtest/internal/gtest-param-util.h"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.4K bytes
    - Viewed (0)
Back to top