* Stylecop Rules and Fixes
This commit is contained in:
Qstick
2020-01-03 07:49:24 -05:00
committed by GitHub
parent 63d669178d
commit f77a2feeef
1307 changed files with 8704 additions and 7404 deletions
-5
View File
@@ -18,7 +18,6 @@ namespace NzbDrone.App.Test
WindowsOnly();
}
[Test]
public void Route_should_call_install_service_when_application_mode_is_install()
{
@@ -36,7 +35,6 @@ namespace NzbDrone.App.Test
serviceProviderMock.Verify(c => c.Install(ServiceProvider.SERVICE_NAME), Times.Once());
}
[Test]
public void Route_should_call_uninstall_service_when_application_mode_is_uninstall()
{
@@ -77,7 +75,6 @@ namespace NzbDrone.App.Test
serviceProvider.Verify(c => c.Run(It.IsAny<ServiceBase>()), Times.Once());
}
[Test]
public void show_error_on_install_if_service_already_exist()
{
@@ -89,7 +86,6 @@ namespace NzbDrone.App.Test
serviceMock.Setup(c => c.ServiceExist(ServiceProvider.SERVICE_NAME)).Returns(true);
Subject.Route(ApplicationModes.InstallService);
}
[Test]
@@ -103,7 +99,6 @@ namespace NzbDrone.App.Test
serviceMock.Setup(c => c.ServiceExist(ServiceProvider.SERVICE_NAME)).Returns(false);
Subject.Route(ApplicationModes.UninstallService);
}
}
}