Dev2.Core.Tests.Services.ServerServiceConfigurationTest.ServerServiceConfiguration_PromptUserToStartService_WhenServiceRunning_ExpectFalse C# (CSharp) Method

ServerServiceConfiguration_PromptUserToStartService_WhenServiceRunning_ExpectFalse() private method

        public void ServerServiceConfiguration_PromptUserToStartService_WhenServiceRunning_ExpectFalse()
        {
            //------------Setup for test--------------------------
            var serverServiceConfiguration = CreateServerServiceConfiguration(true);

            //------------Execute Test---------------------------
            var result = serverServiceConfiguration.PromptUserToStartService();

            //------------Assert Results-------------------------
            Assert.IsFalse(result);
        }
ServerServiceConfigurationTest