Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for hasStableInitializationErrors (1.38 sec)

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

        Matcher<? super String>[] getBrokenBeforeAndAfterMatchers() {
            return [equalTo(failureAssertionError('before failed')), equalTo(failureAssertionError('after failed'))]
        }
    
        @Override
        boolean hasStableInitializationErrors() {
            // Prior to 4.5 test initialization errors would show up in a variety of ways, depending on the version.
            // These stabilized into consistent errors after 4.5.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/vintage/JUnitVintageJUnitTestFailureIntegrationTest.groovy

            return [allOf(containsString(failureAssertionError('before failed')), containsString(failureAssertionError('after failed')))]
        }
    
        @Override
        boolean hasStableInitializationErrors() {
            return true
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/jupiter/JUnitJupiterJUnitTestFailureIntegrationTest.groovy

        }
    
        @Override
        Matcher<? super String>[] getBrokenBeforeAndAfterMatchers() {
            return [equalTo(failureAssertionError('before failed'))]
        }
    
        @Override
        boolean hasStableInitializationErrors() {
            return true
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitTestFailureIntegrationTest.groovy

        abstract String getBeforeClassErrorTestName()
        abstract String getAfterClassErrorTestName()
        abstract Matcher<? super String>[] getBrokenBeforeAndAfterMatchers()
        abstract boolean hasStableInitializationErrors()
    
        def "reports and breaks build when tests fail"() {
            given:
            file('src/test/java/org/gradle/BrokenAfter.java') << """
                package org.gradle;
    
                ${testFrameworkImports}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 18K bytes
    - Viewed (0)
Back to top