Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for tasksExecuted (0.47 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/TestLauncherTaskExecutionCrossVersionSpec.groovy

            }
    
            then:
            taskExecuted(':bar')
            !taskExecuted(':foo')
        }
    
        def "if selected test overlaps with launched task then the test filter still applies"() {
            when:
            launchTestWithTestFilter { tl ->
                tl.forTasks(':help', ':test')
            }
    
            then:
            taskExecuted(':help')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r54/RunEclipseSynchronizationTasksCrossVersionSpec.groovy

                    .setStandardOutput(out)
                    .forTasks()
                    .run()
            }
    
            then:
            !taskExecuted(out, ":nothing")
            !taskExecuted(out, ":nothing_")
            taskExecuted(out, ":nothing__")
        }
    
        private def taskExecuted(ByteArrayOutputStream out, String taskPath) {
            out.toString().contains("> Task $taskPath ")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/CompositeProjectSubstitutionCrossVersionSpec.groovy

            b1Model.projectDependencies.isEmpty()
            b1Model.classpath.collect { it.file.name } == ['buildC-1.0.jar']
            taskExecuted(out, ":eclipseClosedDependencies")
            taskExecuted(out, ":buildC:jar")
        }
    
        private static def taskExecuted(ByteArrayOutputStream out, String taskPath) {
            out.toString().contains("> Task $taskPath")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top