Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getTestCaseStandardError (0.39 sec)

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

                assert junitResult.getSuiteStandardError("OkTest").isPresent()
                assert junitResult.getTestCaseStandardError("OkTest", "isOk").isPresent()
            } else {
                assert !junitResult.getSuiteStandardError("OkTest").isPresent()
                assert !junitResult.getTestCaseStandardError("OkTest", "isOk").isPresent()
            }
    
            and: "all output appeared in the console when running tests"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:51:05 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/vintage/JUnitVintageLoggingOutputCaptureIntegrationTest.groovy

                assert junitResult.getSuiteStandardError("OkTest").isPresent()
                assert junitResult.getTestCaseStandardError("OkTest", "isOk").isPresent()
            } else {
                assert !junitResult.getSuiteStandardError("OkTest").isPresent()
                assert !junitResult.getTestCaseStandardError("OkTest", "isOk").isPresent()
            }
    
            and: "all output appeared in the console when running tests"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:51:39 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/jupiter/JUnitJupiterLoggingOutputCaptureIntegrationTest.groovy

                assert junitResult.getSuiteStandardError("OkTest").isPresent()
                assert junitResult.getTestCaseStandardError("OkTest", "isOk()").isPresent()
            } else {
                assert !junitResult.getSuiteStandardError("OkTest").isPresent()
                assert !junitResult.getTestCaseStandardError("OkTest", "isOk()").isPresent()
            }
    
            and: "all output appeared in the console when running tests"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:51:39 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGLoggingOutputCaptureIntegrationTest.groovy

                assert junitResult.getSuiteStandardError("FooTest").isPresent()
                assert junitResult.getTestCaseStandardError("FooTest", "m1").isPresent()
            } else {
                assert !junitResult.getSuiteStandardError("FooTest").isPresent()
                assert !junitResult.getTestCaseStandardError("FooTest", "m1").isPresent()
            }
    
            and: "all output appeared in the console when running tests"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:51:39 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. testing/internal-testing/src/main/groovy/org/gradle/integtests/fixtures/JUnitXmlTestExecutionResult.groovy

            def testCaseStandardOut = testCaseNode.'system-out'
            return getNodeText(testCaseStandardOut)
        }
    
        Optional<String> getTestCaseStandardError(String testClass, String testCase) {
            def xmlRoot = getTestClassXmlDoc(testClass)
            def testCaseNode = xmlRoot.'testcase'.find { it.@classname = 'OkTest' && it.@name == testCase }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top