1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-01-31 19:41:27 +00:00

remove duplicated test

This commit is contained in:
kay.one 2013-08-19 23:26:46 -07:00
parent 9f0ae763ff
commit af1d7b0e80

View file

@ -66,20 +66,6 @@ namespace NzbDrone.Common.Test
Subject.Exists(DummyApp.DUMMY_PROCCESS_NAME).Should().BeFalse();
}
[Test]
public void Should_be_able_to_execute_process()
{
var process = Subject.Start(Path.Combine(Directory.GetCurrentDirectory(), DummyApp.DUMMY_PROCCESS_NAME + ".exe"));
Subject.Exists(DummyApp.DUMMY_PROCCESS_NAME).Should()
.BeTrue("excepted one dummy process to be already running");
process.Kill();
process.WaitForExit();
Subject.Exists(DummyApp.DUMMY_PROCCESS_NAME).Should().BeFalse();
}
[Test]
public void kill_all_should_kill_all_process_with_name()