예제 #1
0
 public void should_return_Mac()
 {
     result.Should().Be(PlatformType.Mac);
 }
예제 #2
0
 public void should_not_be_Unknown()
 {
     result.Should().NotBe(PlatformType.Unknown);
 }
예제 #3
0
 public void should_return_Windows()
 {
     result.Should().Be(PlatformType.Windows);
 }
예제 #4
0
 public void should_return_Linux()
 {
     result.Should().Be(PlatformType.Linux);
 }