Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for getPreserveOrder (0.29 sec)

  1. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGSpec.java

        public String getDefaultSuiteName() {
            return defaultSuiteName;
        }
    
        public String getConfigFailurePolicy() {
            return configFailurePolicy;
        }
    
        public boolean getPreserveOrder() {
            return preserveOrder;
        }
    
        public boolean getGroupByInstances() {
            return groupByInstances;
        }
    
        public boolean isDryRun() {
            return isDryRun;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 18 12:30:10 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestFramework.java

                options.getUseDefaultListeners(), options.getThreadPoolFactoryClass(),
                options.getIncludeGroups(), options.getExcludeGroups(), options.getListeners(),
                options.getConfigFailurePolicy(), options.getPreserveOrder(), options.getGroupByInstances(), dryRun.get()
            );
        }
    
        @Override
        public Action<WorkerProcessBuilder> getWorkerConfigurationAction() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessor.java

            }
            setSuiteThreadPoolSize(testNg, spec.getSuiteThreadPoolSize());
            setConfigFailurePolicy(testNg, spec.getConfigFailurePolicy());
            setPreserveOrder(testNg, spec.getPreserveOrder());
            setGroupByInstances(testNg, spec.getGroupByInstances());
    
            String className = spec.getThreadPoolFactoryClass();
            if (className != null && !className.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 21:25:59 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/testng/TestNGOptions.java

            return suiteXmlFiles;
        }
    
        public void setSuiteXmlFiles(List<File> suiteXmlFiles) {
            this.suiteXmlFiles = suiteXmlFiles;
        }
    
        @Internal
        public boolean getPreserveOrder() {
            return preserveOrder;
        }
    
        /**
         * Indicates whether the tests should be run in deterministic order. Preserving the order guarantees that the complete test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    methods, such as those annotated with `@Before/AfterClass` and `@Before/AfterMethod` — are executed before the next test starts. You do this by setting the link:{javadocPath}/org/gradle/api/tasks/testing/testng/TestNGOptions.html#getPreserveOrder--[TestNGOptions.getPreserveOrder()] property to `true`. If you set it to `false`, you may encounter scenarios in which the execution order is something like: `TestA.doBeforeClass()` -> `TestB.doBeforeClass()` -> `TestA` tests.
    
    While preserving the...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  6. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.tasks.testing.testng.TestNGOptions.getParallel()> does not have raw return type assignable to org.gradle.api.provider.Property in (TestNGOptions.java:0)
    Method <org.gradle.api.tasks.testing.testng.TestNGOptions.getPreserveOrder()> does not have raw return type assignable to org.gradle.api.provider.Property in (TestNGOptions.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
Back to top