Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getSuiteName (0.17 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)
Back to top