Beispiel #1
0
        public async Task Stop_StopsStorageEmulatorIfStartedByAutomation()
        {
            new AzureStorageEmulatorAutomation().Stop();

            storageEm.Start();

            await TestHelper.VerifyAzureStorageEmulatorIsRunningAsync();

            storageEm.Stop();

            TestHelper.VerifyAzureStorageEmulatorIsNotRunning();
        }
        public void Stop_StopsStorageEmulatorIfStartedByAutomation()
        {
            new AzureStorageEmulatorAutomation().Stop();

            _sut.Start();

            TestHelper.VerifyAzureStorageEmulatorIsRunning();

            _sut.Stop();

            TestHelper.VerifyAzureStorageEmulatorIsNotRunning();
        }
        public StopAzureStorageEmulatorFixture()
        {
            var automation = new AzureStorageEmulatorAutomation();

            automation.Stop();

            TestHelper.VerifyAzureStorageEmulatorIsNotRunning();
        }
        public StopAzureStorageEmulatorFixture()
        {
            var automation = new AzureStorageEmulatorAutomation();

            automation.Stop();

            TestHelper.VerifyAzureStorageEmulatorIsNotRunning();
        }