Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getSuiteStandardError (0.36 sec)

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

            }
            if (standardErrIncluded) {
                assert junitResult.getSuiteStandardError("OkTest").isPresent()
                assert junitResult.getTestCaseStandardError("OkTest", "isOk").isPresent()
            } else {
                assert !junitResult.getSuiteStandardError("OkTest").isPresent()
                assert !junitResult.getTestCaseStandardError("OkTest", "isOk").isPresent()
            }
    
    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

            }
            if (standardErrIncluded) {
                assert junitResult.getSuiteStandardError("OkTest").isPresent()
                assert junitResult.getTestCaseStandardError("OkTest", "isOk").isPresent()
            } else {
                assert !junitResult.getSuiteStandardError("OkTest").isPresent()
                assert !junitResult.getTestCaseStandardError("OkTest", "isOk").isPresent()
            }
    
    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

            }
            if (standardErrIncluded) {
                assert junitResult.getSuiteStandardError("OkTest").isPresent()
                assert junitResult.getTestCaseStandardError("OkTest", "isOk()").isPresent()
            } else {
                assert !junitResult.getSuiteStandardError("OkTest").isPresent()
                assert !junitResult.getTestCaseStandardError("OkTest", "isOk()").isPresent()
            }
    
    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

            }
            if (standardErrIncluded) {
                assert junitResult.getSuiteStandardError("FooTest").isPresent()
                assert junitResult.getTestCaseStandardError("FooTest", "m1").isPresent()
            } else {
                assert !junitResult.getSuiteStandardError("FooTest").isPresent()
                assert !junitResult.getTestCaseStandardError("FooTest", "m1").isPresent()
            }
    
    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 xmlRoot = getTestClassXmlDoc(testClass)
            def suiteStandardOut = xmlRoot.'system-out'
            return getNodeText(suiteStandardOut)
        }
    
        Optional<String> getSuiteStandardError(String testClass) {
            def xmlRoot = getTestClassXmlDoc(testClass)
            def suiteStandardErr = xmlRoot.'system-err'
            return getNodeText(suiteStandardErr)
        }
    
    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