Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for getSuiteName (0.57 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/events/InternalJvmTestDescriptor.java

         */
        String getTestKind();
    
        /**
         * Returns the name of the test suite, if any.
         *
         * @return The name of the test suite, can be null.
         */
        @Nullable
        String getSuiteName();
    
        /**
         * Returns the name of the test class, if any.
         *
         * @return The name of the test class, can be null.
         */
        @Nullable
        String getClassName();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 07:45:14 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/DefaultTestDescriptor.java

            return testDisplayName;
        }
    
        @Override
        public String getTestKind() {
            return testKind;
        }
    
        @Override
        @Nullable
        public String getSuiteName() {
            return suiteName;
        }
    
        @Override
        @Nullable
        public String getClassName() {
            return className;
        }
    
        @Override
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 07:45:14 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestFramework.java

        }
    
        private TestNGSpec toSpec(TestNGOptions options, DefaultTestFilter filter) {
            return new TestNGSpec(filter.toSpec(),
                options.getSuiteName(), options.getTestName(), options.getParallel(), options.getThreadCount(), options.getSuiteThreadPoolSize().get(),
                options.getUseDefaultListeners(), options.getThreadPoolFactoryClass(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/testng/TestNGOptions.java

        }
    
        /**
         * Sets the default name of the test suite, if one is not specified in a suite XML file or in the source code.
         */
        @Internal
        public String getSuiteName() {
            return suiteName;
        }
    
        public void setSuiteName(String suiteName) {
            this.suiteName = suiteName;
        }
    
        /**
    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/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

                return new DefaultJvmTestOperationDescriptor(jvmTestDescriptor, parent,
                    toJvmTestKind(jvmTestDescriptor.getTestKind()), jvmTestDescriptor.getSuiteName(), jvmTestDescriptor.getClassName(), jvmTestDescriptor.getMethodName());
            } else {
                return new DefaultTestOperationDescriptor(descriptor, parent);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  6. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    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)
    Method <org.gradle.api.tasks.testing.testng.TestNGOptions.getSuiteName()> 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