Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for HtmlTestExecutionResult (0.34 sec)

  1. testing/internal-testing/src/main/groovy/org/gradle/integtests/fixtures/HtmlTestExecutionResult.groovy

    import static org.hamcrest.CoreMatchers.hasItems
    import static org.hamcrest.CoreMatchers.not
    import static org.hamcrest.MatcherAssert.assertThat
    
    class HtmlTestExecutionResult implements TestExecutionResult {
    
        private File htmlReportDirectory
    
        public HtmlTestExecutionResult(File projectDirectory, String testReportDirectory = "build/reports/tests/test") {
            this.htmlReportDirectory = new File(projectDirectory, testReportDirectory);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-test-report-aggregation/src/integTest/groovy/org/gradle/api/plugins/TestReportAggregationPluginIntegrationTest.groovy

            applicationTestResults.assertTestClassesExecuted('application.AdderTest')
    
            def transitiveIntegTestResults = new HtmlTestExecutionResult(testDirectory.file('transitive'), 'build/reports/tests/integTest')
            transitiveIntegTestResults.assertTestClassesExecuted('transitive.ModTest')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestReportIntegrationTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.testing
    
    import org.gradle.integtests.fixtures.HtmlTestExecutionResult
    import org.gradle.testing.fixture.AbstractTestingMultiVersionIntegrationTest
    
    import static org.hamcrest.CoreMatchers.equalTo
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGXmlResultAndHtmlReportIntegrationTest.groovy

            mode << modes
        }
    
        void verify(Mode mode) {
            verifyTestResultWith(new JUnitXmlTestExecutionResult(file("."), mode.outputAssociation), mode.outputAssociation)
            verifyTestResultWith(new HtmlTestExecutionResult(file(".")), mode.outputAssociation)
        }
    
        def runWithTestConfig(String testConfiguration) {
            def buildFile = file('build.gradle')
            buildFile.text = """
                apply plugin: 'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 21:27:42 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/integTest/groovy/org/gradle/internal/serialize/ExceptionPlaceholderIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal.serialize
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.integtests.fixtures.HtmlTestExecutionResult
    import spock.lang.Issue
    
    import static org.hamcrest.CoreMatchers.containsString
    
    class ExceptionPlaceholderIntegrationTest extends AbstractIntegrationSpec {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:58:24 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestReportTaskIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.testing
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.integtests.fixtures.HtmlTestExecutionResult
    import org.gradle.integtests.fixtures.JUnitTestClassExecutionResult
    import org.gradle.integtests.fixtures.JUnitXmlTestExecutionResult
    import org.gradle.integtests.fixtures.Sample
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/jupiter/JUnitJupiterTestReportIntegrationTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.testing.junit.jupiter
    
    import org.gradle.integtests.fixtures.HtmlTestExecutionResult
    import org.gradle.integtests.fixtures.JUnitXmlTestExecutionResult
    import org.gradle.integtests.fixtures.TargetCoverage
    import org.gradle.testing.AbstractTestReportIntegrationTest
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. testing/internal-testing/src/main/groovy/org/gradle/integtests/fixtures/DefaultTestExecutionResult.groovy

            if(binary){
                htmlResult = new HtmlTestExecutionResult(projectDir, "$buildDirName/reports${binaryPath}/tests/")
                xmlResult = new JUnitXmlTestExecutionResult(projectDir, "$buildDirName/test-results${binaryPath}")
    
                results << htmlResult
                results << xmlResult
            }else{
                htmlResult = new HtmlTestExecutionResult(projectDir, "$buildDirName/reports/tests/${testTaskName}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestOptionsIntegrationSpec.groovy

            succeeds("check")
        }
    
        private void assertTestsExecuted() {
            def result = new HtmlTestExecutionResult(testDirectory)
            result.assertTestClassesExecuted("org.example.SomeTestClass")
        }
    
        private void assertIntegTestsExecuted() {
            def result = new HtmlTestExecutionResult(testDirectory, "build/reports/tests/integTest")
            result.assertTestClassesExecuted("org.example.SomeIntegTestClass")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4LoggingOutputCaptureIntegrationTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.testing.junit.junit4
    
    import org.gradle.integtests.fixtures.HtmlTestExecutionResult
    import org.gradle.integtests.fixtures.JUnitXmlTestExecutionResult
    import org.gradle.testing.junit.AbstractJUnitLoggingOutputCaptureIntegrationTest
    import org.gradle.util.internal.VersionNumber
    import org.junit.Assume
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.7K bytes
    - Viewed (0)
Back to top