Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,408 for suiteID (0.19 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestDB.h

      CU_pTest          pTest;            /**< Pointer to the 1st test in the suite. */
      CU_InitializeFunc pInitializeFunc;  /**< Pointer to the suite initialization function. */
      CU_CleanupFunc    pCleanupFunc;     /**< Pointer to the suite cleanup function. */
    
      unsigned int      uiNumberOfTests;  /**< Number of tests in the suite. */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  2. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoPluginIntegrationTest.groovy

    """)
    
            and:
            hasIncubatingLegend()
        }
    
        def "jacoco plugin adds outgoing variants for custom test suite"() {
            settingsFile << "rootProject.name = 'Test'"
    
            buildFile << """
                testing {
                    suites {
                        integrationTest(JvmTestSuite) {
                            testType = TestSuiteType.INTEGRATION_TEST
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  3. cmd/prune-junit-xml/prunexml.go

    		}
    		defer xmlWriter.Close()
    		err = streamXML(xmlWriter, suites)
    		if err != nil {
    			panic(err)
    		}
    		fmt.Println("done.")
    	}
    }
    
    func pruneXML(suites *junitxml.JUnitTestSuites, maxBytes int) {
    	for _, suite := range suites.Suites {
    		for _, testcase := range suite.TestCases {
    			if testcase.SkipMessage != nil {
    				if len(testcase.SkipMessage.Message) > maxBytes {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 12:26:00 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestOptionsIntegrationSpec.groovy

            assertIntegTestsExecuted()
        }
        // endregion custom test suite
    
        // region all suites
        def "can set test framework in #suiteName suite prior to setting options within test task"() {
            given:
            buildFile << """
            // Configure task through suite
            testing {
                suites {
                    integTest(JvmTestSuite) {
                        useJUnitJupiter()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  5. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cunit/CUnitTestResults.groovy

            resultsNode.CUNIT_RESULT_LISTING.CUNIT_RUN_SUITE.CUNIT_RUN_SUITE_SUCCESS.each { Node suiteNode ->
                def suite = new Suite(suiteNode)
                suites.put(suite.name, suite)
            }
    
            summaryRecords['Suites'] = new SummaryRecord(resultsNode.CUNIT_RUN_SUMMARY.CUNIT_RUN_SUMMARY_RECORD.find({it.TYPE.text() == 'Suites'}) as Node)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testsuites/dependencies/TestSuitesGroovyDSLDependenciesIntegrationTest.groovy

                    assert testRuntime*.name == ['commons-lang3-3.11.jar'] : 'commons-lang3 is an implementation dependency for the default test suite'
                    assert !integTestCompile*.name.contains('commons-lang3-3.11.jar') : 'default test suite dependencies should not leak to integTest'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 11 16:25:08 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestRun.h

     *  @see CU_run_test() to run a single test in a specific suite.
     */
    
    CU_EXPORT CU_ErrorCode CU_run_test(CU_pSuite pSuite, CU_pTest pTest);
    /**< 
     *  Runs a specific test in a specified suite.
     *  The suite need not be registered in the test registry to be run,
     *  although the test must be registered in the specified suite.
     *  Any initialization function for the suite is first
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 22K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-jvm-test-suite/src/integTest/groovy/org/gradle/testing/testsuites/TestSuitesIntegrationTest.groovy

        }
    
        def "multiple gets for toolchain on a test suite return same instance"() {
            given:
            buildFile << """
                plugins {
                    id 'java'
                }
    
                def first = testing.suites.test.getTestToolchain()
                def second = testing.suites.test.getTestToolchain()
    
                tasks.register('assertSameFrameworkInstance') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 13 20:36:32 UTC 2023
    - 35.8K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGUpToDateCheckIntegrationTest.groovy

                }
            '''.stripIndent()
            file('suite.xml') << '''
                <!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
                <suite name="MySuite">
                  <test name="MyTest">
                    <classes>
                      <class name="SomeTest" />
                    </classes>
                  </test>
                </suite>
            '''.stripIndent()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 18 12:30:10 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testsuites/dependencies/TestSuitesKotlinDSLDependenciesIntegrationTest.groovy

                        assert(testRuntimeClasspathFiles.map { it.name }.equals(listOf("commons-lang3-3.11.jar"))) { "commons-lang3 is an implementation dependency for the default test suite" }
                        assert(!integTestCompileClasspathFiles.map { it.name }.contains("commons-lang3-3.11.jar")) { "default test suite dependencies should not leak to integTest" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 11 16:25:08 UTC 2024
    - 45.8K bytes
    - Viewed (0)
Back to top