Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,408 for suiteID (0.25 sec)

  1. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/testng/TestNGOptions.java

            return projectDir;
        }
    
        /**
         * Add suite files by File objects.
         */
        public void suites(File... suiteFiles) {
            suiteXmlFiles.addAll(Arrays.asList(suiteFiles));
        }
    
        public List<File> getSuites(File testSuitesDir) {
            List<File> suites = new ArrayList<File>();
    
            suites.addAll(suiteXmlFiles);
    
            String suiteXmlMarkup = getSuiteXml();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testsuites/JUnitOptionsIntegrationTest.groovy

    class JUnitOptionsIntegrationTest extends AbstractTestFrameworkOptionsIntegrationTest {
        def "options for test framework are respected for JUnit in built-in test suite"() {
            buildFile << """
                testing {
                    suites {
                        test {
                            useJUnit()
                            targets.all {
                                testTask.configure {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseTestConfigurationsWithExternalDependenciesIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache
        def "dependencies in jvm test suites are marked with test classpath attribute"() {
            buildFile.text = """
                plugins {
                    id 'jvm-test-suite'
                }
                ${buildFile.text}
            """
            buildFile << """
                testing {
                    suites {
                        integration(JvmTestSuite) {
                            dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  4. android/guava-testlib/test/com/google/common/collect/testing/OpenJdk6Tests.java

        suite.addTest(OpenJdk6QueueTests.suite());
        suite.addTest(OpenJdk6MapTests.suite());
        return suite;
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 1.3K bytes
    - Viewed (0)
  5. src/compress/flate/reader_test.go

    }
    
    func doBench(b *testing.B, f func(b *testing.B, buf []byte, level, n int)) {
    	for _, suite := range suites {
    		buf, err := os.ReadFile(suite.file)
    		if err != nil {
    			b.Fatal(err)
    		}
    		if len(buf) == 0 {
    			b.Fatalf("test file %q has no data", suite.file)
    		}
    		for _, l := range levelTests {
    			for _, s := range sizes {
    				b.Run(suite.name+"/"+l.name+"/"+s.name, func(b *testing.B) {
    					f(b, buf, l.level, s.n)
    				})
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-jvm-test-suite/src/main/java/org/gradle/api/plugins/jvm/JvmTestSuite.java

         *
         * Defaults to the value of the {@code UNIT_TEST} constant defined in {@link TestSuiteType} for the built-in test suite, and to the dash-case name of the
         * test suite for custom test suites.  Test suite types must be unique across all test suites within a project.
         *
         * @since 7.4
         */
        Property<String> getTestType();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cunit/CUnitIntegrationTest.groovy

            def testResults = new CUnitTestResults(file("build/test-results/helloTest/CUnitAutomated-Results.xml"))
            testResults.suiteNames == ['hello test']
            testResults.suites['hello test'].passingTests == ['test_sum']
            testResults.suites['hello test'].failingTests == []
            testResults.checkTestCases(1, 1, 0)
            testResults.checkAssertions(3, 3, 0)
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 17K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testsuites/TestNGOptionsIntegrationTest.groovy

    class TestNGOptionsIntegrationTest extends AbstractTestFrameworkOptionsIntegrationTest {
        def "options for test framework are respected for TestNG in built-in test suite"() {
            buildFile << """
                testing {
                    suites {
                        test {
                            useTestNG()
                            targets.all {
                                testTask.configure {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/testing/test-suite-configure-default-suite/groovy/build.gradle

     */
    
    plugins {
        id 'java'
    }
    
    version = '1.0.2'
    group = 'org.gradle.sample'
    
    repositories {
        mavenCentral()
    }
    
    // tag::configure-default-suite[]
    testing { // <1>
        suites {
            test {
                useTestNG() // <1>
    
                targets {
                    all {
                        testTask.configure { // <2>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/testing/test-suite-configure-suite-dependencies/groovy/build.gradle

     * limitations under the License.
     */
    
    plugins {
        id 'java'
    }
    
    version = '1.0.2'
    group = 'org.gradle.sample'
    
    repositories {
        mavenCentral()
    }
    
    // tag::configure-suite-dependencies[]
    testing {
        suites {
            test { // <1>
                dependencies {
                    // Note that this is equivalent to adding dependencies to testImplementation in the top-level dependencies block
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top