Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for blahClasspath (0.09 sec)

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

                def test = tasks.named('test', Test)
    
                def otherTests = tasks.register('otherTests', Test) {
                    binaryResultsDirectory = file("bin")
                    classpath = files('blahClasspath')
                    testClassesDirs = files("blah")
                    ${configureTestFramework}
                }
    
                tasks.register('testReport', TestReport) {
                    testResults.from(test, otherTests)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestReportTaskIntegrationTest.groovy

            buildScript """
                apply plugin: 'java'
                $junitSetup
                tasks.register('otherTests', Test) {
                    binaryResultsDirectory = file("bin")
                    classpath = files('blahClasspath')
                    testClassesDirs = files("blah")
                }
                tasks.register('testReport', TestReport) {
                    reportOn test, otherTests
                    destinationDir reporting.file("tr")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 16.6K bytes
    - Viewed (0)
Back to top