mirror of
https://github.com/Sonarr/Sonarr
synced 2025-12-15 21:03:56 +01:00
Don't use TestCase for single test
This commit is contained in:
parent
ad60352bae
commit
541d3307e1
1 changed files with 2 additions and 2 deletions
|
|
@ -41,7 +41,7 @@ public void should_get_version_info(string versionString)
|
|||
versionName.FullName.Should().Be("macOS " + versionString);
|
||||
}
|
||||
|
||||
[TestCase]
|
||||
[Test]
|
||||
public void should_detect_server()
|
||||
{
|
||||
var fileContent = File.ReadAllText(GetTestPath("Files/macOS/SystemVersion.plist"));
|
||||
|
|
@ -63,7 +63,7 @@ public void should_detect_server()
|
|||
versionName.Name.Should().Be("macOS Server");
|
||||
}
|
||||
|
||||
[TestCase]
|
||||
[Test]
|
||||
public void should_return_null_if_folder_doesnt_exist()
|
||||
{
|
||||
Mocker.GetMock<IDiskProvider>()
|
||||
|
|
|
|||
Loading…
Reference in a new issue