Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for statusMatches (0.43 sec)

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

            then:
            (0..10).each { count ->
                assert events.statusMatches("${count} tests? completed(,.*)*")
            }
    
            and:
            (1..3).each { count ->
                assert events.statusMatches("\\d+ tests? completed, ${count} failed(,.*)?")
            }
    
            and:
            (1..2).each { count ->
                assert events.statusMatches("\\d+ tests? completed,( \\d failed,)? ${count} skipped")
            }
        }
    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.size() >= 2
        }
    
        @Deprecated
        boolean statusLogged(String message) {
            return progressContent.contains("[" + message + "]")
        }
    
        @Deprecated
        boolean statusMatches(String regex) {
            return progressContent.any { it.matches("\\[" + 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