Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for PassingTest (0.08 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGXmlResultAndHtmlReportIntegrationTest.groovy

            System.err.println("err.fail2");
            fail("failing2!");
        }
        @Test(enabled = false) public void skipped() {}
    }
    """
            file("src/test/java/org/PassingTest.java") << """package org;
    import org.testng.annotations.*;
    
    public class PassingTest {
        @Test public void passing() {
            System.out.println("out" );
        }
        @Test public void passing2() {}
    }
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 21:27:42 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitTestFailureIntegrationTest.groovy

            """
    
            file('src/test/java/PoisonTest.java') << """
                ${testFrameworkImports}
    
                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: Mon Sep 18 20:52:40 UTC 2023
    - 18K bytes
    - Viewed (0)
  3. 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)
  4. 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