Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for UnserializableException (0.61 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitTestFailureIntegrationTest.groovy

                }
            """.stripIndent()
            file('src/test/java/org/gradle/UnserializableException.java') << """
                package org.gradle;
    
                ${testFrameworkImports}
    
                import java.io.IOException;
                import java.io.ObjectOutputStream;
    
                public class UnserializableException {
    
                    @Test
                    public void unserialized() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 18K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/platform/JUnitPlatformIntegrationTest.groovy

                    @Test
                    public void passingTest() { }
    
                    @Test
                    public void testWithUnserializableException() {
                        throw new UnserializableException();
                    }
    
                    @Test
                    public void normalFailingTest() {
                        assert false;
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGIntegrationTest.groovy

                    @Test public void passingTest() { }
    
                    @Test public void testWithUnserializableException() {
                        if (true) {
                            throw new UnserializableException();
                        }
                    }
    
                    @Test public void normalFailingTest() {
                        assert false;
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top