Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for statusLogged (0.13 sec)

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

            withGoodTestClasses(10)
    
            when:
            succeeds("test")
    
            then:
            events.statusLogged("0 tests completed")
            events.statusLogged("1 test completed")
            (2..10).each { count ->
                assert events.statusLogged("${count} tests completed")
            }
        }
    
        def "captures failing test progress logging events" () {
            withFailingTestClasses(10)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ProgressLoggingFixture.groovy

            }
            lines = lines[startIndex..<lines.size()]
            lines = lines[0..lines.indexOf("[END " + operation + "]")]
            lines.size() >= 2
        }
    
        @Deprecated
        boolean statusLogged(String message) {
            return progressContent.contains("[" + message + "]")
        }
    
        @Deprecated
        boolean statusMatches(String regex) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top