Skip to content

Commit

Permalink
Don't use TestCase for single test
Browse files Browse the repository at this point in the history
(cherry picked from commit 541d3307e1466b0353dc4149f502a4b62b4de616)
  • Loading branch information
markus101 authored and Qstick committed Jan 25, 2024
1 parent 49b404d commit ce063f8
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -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"));
Expand All @@ -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>()
Expand Down

0 comments on commit ce063f8

Please sign in to comment.