Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for getTestDisplayName (0.25 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)
  5. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/TestOperationMapper.java

         * Once its code is updated to use {@link org.gradle.tooling.events.test.TestOperationDescriptor#getTestDisplayName()}, the workaround can be removed as well.
         * Alternatively, it can be removed in Gradle 9.0.
         * See <a href="https://github.com/gradle/gradle/issues/24538">this issue</a> for more details.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:42:44 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/TestLauncherSpec.groovy

                }
                throw err.build()
            }
    
            void validate(String expectedOperationDisplayName) {
                if (testDisplayName != null && parent.respondsTo("getTestDisplayName")) {
                    assert testDisplayName == ((TestOperationDescriptor) parent).testDisplayName
                }
                if (operationDisplayName != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:42:44 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top