Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for BuildOperationNotificationFixture (0.27 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/internal/operations/notify/BuildOperationNotificationFixture.groovy

    import org.gradle.internal.operations.trace.BuildOperationTrace
    import org.gradle.launcher.exec.RunBuildBuildOperationType
    import org.gradle.test.fixtures.file.TestFile
    
    class BuildOperationNotificationFixture {
    
        TestFile dir
    
        BuildOperationNotificationFixture(TestFile dir) {
            this.dir = dir
        }
    
        def op(Class<?> detailsClass, Map<String, String> details = [:]) {
            def found = recordedOps.findAll { op ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 20 11:47:00 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/internal/operations/notify/BuildOperationNotificationContinuousBuildIntegrationTest.groovy

    import org.gradle.launcher.exec.RunBuildBuildOperationType
    
    class BuildOperationNotificationContinuousBuildIntegrationTest extends AbstractContinuousIntegrationTest {
    
        def notifications = new BuildOperationNotificationFixture(testDirectory)
    
        @ToBeFixedForConfigurationCache(because = "run1.id == run2.id")
        def "obtains notifications about init scripts"() {
            when:
            settingsFile << notifications.registerListener()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 11 09:57:23 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/internal/operations/notify/BuildOperationNotificationIntegrationTest.groovy

    import static org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache.Skip.INVESTIGATE
    
    class BuildOperationNotificationIntegrationTest extends AbstractIntegrationSpec {
    
        def notifications = new BuildOperationNotificationFixture(testDirectory)
    
        void addSettingsListener() {
            settingsFile << """
                ${notifications.registerListener()}
            """
        }
    
        def "obtains notifications about init scripts"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 20.9K bytes
    - Viewed (0)
Back to top