Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getTestDisplayName (0.39 sec)

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

        }
    
        @Override
        public InternalOperationDescriptor getInternalOperationDescriptor() {
            return internalTestDescriptor;
        }
    
        @Override
        public String getTestDisplayName() {
            return internalTestDescriptor.getTestDisplayName();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/test/TestOperationDescriptor.java

         * Not to be confused with {@link #getDisplayName()} which is the display name of the operation.
         *
         * @return the display name of the test.
         * @since 8.8
         */
        @Incubating
        String getTestDisplayName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/events/InternalTestDescriptor.java

    public interface InternalTestDescriptor extends InternalOperationDescriptor {
        /**
         * Returns the display name of the test.
         *
         * @return The display name of the test
         * @since 8.8
         */
        String getTestDisplayName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 07:45:14 UTC 2024
    - 1K bytes
    - Viewed (0)
  4. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/DefaultTestDescriptor.java

        public String getName() {
            return operationName;
        }
    
        @Override
        public String getDisplayName() {
            return operationDisplayName;
        }
    
        @Override
        public String getTestDisplayName() {
            return testDisplayName;
        }
    
        @Override
        public String getTestKind() {
            return testKind;
        }
    
        @Override
        @Nullable
        public String getSuiteName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 07:45:14 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top