Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for getSuiteName (0.27 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/test/JvmTestOperationDescriptor.java

         */
        JvmTestKind getJvmTestKind();
    
        /**
         * Returns the name of the test suite, if any.
         *
         * @return The name of the test suite.
         */
        @Nullable
        String getSuiteName();
    
        /**
         * Returns the name of the test class, if any.
         *
         * @return The name of the test class.
         */
        @Nullable
        String getClassName();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. 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)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/test/internal/DefaultJvmTestOperationDescriptor.java

            this.methodName = methodName;
        }
    
        @Override
        public JvmTestKind getJvmTestKind() {
            return this.jvmTestKind;
        }
    
        @Nullable
        @Override
        public String getSuiteName() {
            return this.suiteName;
        }
    
        @Nullable
        @Override
        public String getClassName() {
            return this.className;
        }
    
        @Nullable
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapterForTestOperationsTest.groovy

            _ * testDescriptor.getDisplayName() >> 'some test suite in human readable form'
            _ * testDescriptor.getTestKind() >> InternalJvmTestDescriptor.KIND_SUITE
            _ * testDescriptor.getSuiteName() >> 'some suite'
            _ * testDescriptor.getClassName() >> 'some class'
            _ * testDescriptor.getMethodName() >> 'some method'
            _ * testDescriptor.getParentId() >> null
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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