Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for registerTest (0.12 sec)

  1. platforms/jvm/plugins-jvm-test-suite/src/integTest/groovy/org/gradle/testing/testsuites/TestSuitesIntegrationTest.groovy

                testing {
                    suites {
                        eagerTest(JvmTestSuite)
                        register("registerTest", JvmTestSuite)
                    }
                }
            """
    
            expect:
            succeeds("eagerTest")
            succeeds("registerTest")
        }
    
        def "built-in test suite does not have any testing framework set at the test suite level"() {
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 13 20:36:32 UTC 2023
    - 35.8K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

    // and generators provided by INSTANTIATE_TEST_CASE_P macro invocations
    // and uses that information to register all resulting test instances
    // in RegisterTests method. The ParameterizeTestCaseRegistry class holds
    // a collection of pointers to the ParameterizedTestCaseInfo objects
    // and calls RegisterTests() on each of them when asked.
    class ParameterizedTestCaseInfoBase {
     public:
      virtual ~ParameterizedTestCaseInfoBase() {}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

    // and generators provided by INSTANTIATE_TEST_CASE_P macro invocations
    // and uses that information to register all resulting test instances
    // in RegisterTests method. The ParameterizeTestCaseRegistry class holds
    // a collection of pointers to the ParameterizedTestCaseInfo objects
    // and calls RegisterTests() on each of them when asked.
    class ParameterizedTestCaseInfoBase {
     public:
      virtual ~ParameterizedTestCaseInfoBase() {}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/parse.go

    			return
    		}
    	}
    
    	// Special register list syntax for arm: [R1,R3-R7]
    	if tok.ScanToken == '[' {
    		if prefix != 0 {
    			p.errorf("illegal use of register list")
    		}
    		p.registerList(a)
    		p.expectOperandEnd()
    		return
    	}
    
    	// Register: R1
    	if tok.ScanToken == scanner.Ident && p.atStartOfRegister(name) {
    		if p.atRegisterShift() {
    			// ARM shifted register such as R1<<R2 or R1>>2.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
Back to top