Skip to content
Prev Previous commit
Next Next commit
add more test cases
  • Loading branch information
adamsitnik committed Jul 10, 2020
commit 8a3277e39add2606b06012ddcdd2a29531188a0d
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,9 @@ public void PlatformNamesAreComparedUsingOrdinalIgnoreCase()
public void OSX_equals_macOS()
{
Assert.Equal(OSPlatform.OSX, OSPlatform.macOS);
Assert.Equal(OSPlatform.OSX, OSPlatform.Create("macOS"));
Assert.Equal(OSPlatform.Create("OSX"), OSPlatform.macOS);
Assert.Equal(OSPlatform.Create("OSX"), OSPlatform.Create("macOS"));
}
}
}