Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for PassingTest (0.24 sec)

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

            given:
            file('src/test/java/PoisonTest.java') << """
                import org.junit.jupiter.api.Test;
    
                public class PoisonTest {
                    @Test
                    public void passingTest() { }
    
                    @Test
                    public void testWithUnserializableException() {
                        throw new UnserializableException();
                    }
    
                    @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGIntegrationTest.groovy

            given:
            file('src/test/java/PoisonTest.java') << """
                import org.testng.annotations.Test;
    
                public class PoisonTest {
                    @Test public void passingTest() { }
    
                    @Test public void testWithUnserializableException() {
                        if (true) {
                            throw new UnserializableException();
                        }
                    }
    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