Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for assertStderr (0.19 sec)

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

                        "< html allowed, cdata closing token ]]> encoded!\n" +
                        "no EOL, non-asci char: ż\n" +
                        "xml entity: &amp;"
                    ))
                    .assertStderr(equalTo("< html allowed, cdata closing token ]]> encoded!\n"))
        }
    
        String lineNumberOf(String text) {
            int i = 1
            for (String line : testFile.readLines()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:58:24 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitLoggingOutputCaptureIntegrationTest.groovy

            classResult.assertTestCaseStderr("anotherOk", is("[before err]\n[ok err][after err]"))
            classResult.assertStdout(is("[before class out][after class out]"))
            classResult.assertStderr(is("[before class err][after class err]"))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/TestNGExecutionResult.groovy

        }
    
        TestClassExecutionResult assertTestCaseStdout(String testCaseName, Matcher<? super String> matcher) {
            throw new UnsupportedOperationException();
        }
    
        TestClassExecutionResult assertStderr(Matcher<? super String> matcher) {
            throw new UnsupportedOperationException();
        }
    
        TestClassExecutionResult assertTestCaseStderr(String testCaseName, Matcher<? super String> matcher) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top