Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getJvmTestKind (0.13 sec)

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

     */
    public interface JvmTestOperationDescriptor extends TestOperationDescriptor {
    
        /**
         * Returns what kind of test this is.
         *
         * @return The test kind.
         */
        JvmTestKind getJvmTestKind();
    
        /**
         * Returns the name of the test suite, if any.
         *
         * @return The name of the test suite.
         */
        @Nullable
        String getSuiteName();
    
        /**
    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/events/test/internal/DefaultJvmTestOperationDescriptor.java

            this.jvmTestKind = jvmTestKind;
            this.suiteName = suiteName;
            this.className = className;
            this.methodName = methodName;
        }
    
        @Override
        public JvmTestKind getJvmTestKind() {
            return this.jvmTestKind;
        }
    
        @Nullable
        @Override
        public String getSuiteName() {
            return this.suiteName;
        }
    
        @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)
Back to top