Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for assertDeploymentIsStopped (0.31 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/DeploymentHandleContinuousBuildCrossVersionSpec.groovy

                fixture.triggerFile << "\n#another change"
                succeeds()
                fixture.assertDeploymentIsRunning(key)
    
                cancel()
            }
    
            then:
            fixture.assertDeploymentIsStopped()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. subprojects/core/src/testFixtures/groovy/org/gradle/test/fixtures/TestDeploymentFixture.groovy

            // assert that the keyFile still exists and has the same contents (ie handle is still running)
            assert keyFile.exists()
            assert keyFile.text == key
        }
    
        void assertDeploymentIsStopped() {
            // assert that the deployment handle was stopped and removed the key file
            assert !keyFile.exists()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 26 00:54:23 UTC 2019
    - 4.1K bytes
    - Viewed (0)
Back to top