Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for DefaultTestOutputEvent (0.4 sec)

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

    import org.gradle.internal.scan.UsedByScanPlugin;
    
    @UsedByScanPlugin("test-distribution")
    public class DefaultTestOutputEvent implements TestOutputEvent {
    
        private final Destination destination;
        private final String message;
    
        @UsedByScanPlugin("test-distribution")
        public DefaultTestOutputEvent(Destination destination, String message) {
            this.destination = destination;
            this.message = message;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/redirector/TestOutputRedirector.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.testing.redirector;
    
    import org.gradle.api.internal.tasks.testing.DefaultTestOutputEvent;
    import org.gradle.api.internal.tasks.testing.TestResultProcessor;
    import org.gradle.api.tasks.testing.TestOutputEvent;
    
    public class TestOutputRedirector {
        private final StandardOutputRedirector redirector;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/worker/TestEventSerializerTest.groovy

            result2.endTime == 123L
            result2.resultType == null
        }
    
        def "serializes DefaultTestOutputEvent"() {
            def event = new DefaultTestOutputEvent(TestOutputEvent.Destination.StdErr, "hi")
    
            when:
            def result = serialize(event)
    
            then:
            result instanceof DefaultTestOutputEvent
            result.destination == TestOutputEvent.Destination.StdErr
            result.message == "hi"
    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/redirector/TestOutputRedirectorTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.testing.redirector
    
    import org.gradle.api.internal.tasks.testing.DefaultTestOutputEvent
    import org.gradle.api.internal.tasks.testing.TestResultProcessor
    import org.gradle.api.tasks.testing.TestOutputEvent
    import spock.lang.Specification
    import spock.lang.Subject
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top