Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for DefaultTestDescriptor (0.76 sec)

  1. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/DefaultTestDescriptor.java

    import javax.annotation.Nullable;
    
    @UsedByScanPlugin("test-distribution")
    @NonNullApi
    public class DefaultTestDescriptor extends AbstractTestDescriptor {
        private final String displayName;
        private final String className;
        private final String classDisplayName;
    
        @UsedByScanPlugin("test-distribution")
        public DefaultTestDescriptor(Object id, String className, String name) {
            this(id, className, name, null, name);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/DefaultTestDescriptor.java

    import org.gradle.tooling.internal.protocol.events.InternalOperationDescriptor;
    
    import javax.annotation.Nullable;
    import java.io.Serializable;
    
    @NonNullApi
    public class DefaultTestDescriptor implements Serializable, InternalJvmTestDescriptor, InternalOperationDescriptor {
    
        private final OperationIdentifier id;
        private final String operationName;
        private final String operationDisplayName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 07:45:14 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/worker/TestEventSerializerTest.groovy

            result.name == "some-test"
        }
    
        def "serializes DefaultTestDescriptor"() {
            def id = new CompositeIdGenerator.CompositeId(1L, 2L)
            def descriptor = new DefaultTestDescriptor(id, "some-class", "some-test")
    
            when:
            def result = serialize(descriptor)
    
            then:
            result instanceof DefaultTestDescriptor
            result.id == id
            result.className == "some-class"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/processors/CaptureTestOutputTestResultProcessorTest.groovy

            then: 1 * redirector.setOutputOwner("1")
            then: 1 * redirector.startRedirecting()
            0 * _
        }
    
        def "starts capturing only on first test"() {
            def test = new DefaultTestDescriptor("2", "Bar", "Baz")
            def testEvent = new TestStartEvent(2, "1")
    
            processor.started(new DefaultTestSuiteDescriptor("1", "Foo"), new TestStartEvent(1))
    
            when: processor.started(test, testEvent)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/DefaultTestMethodDescriptor.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.testing;
    
    public class DefaultTestMethodDescriptor extends DefaultTestDescriptor {
        public DefaultTestMethodDescriptor(Object id, String className, String methodName) {
            super(id, className, methodName);
        }
    
        @Override
        public String toString() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 1001 bytes
    - Viewed (0)
Back to top