Test that this platform is implemented..
()
| 81 | * Test that this platform is implemented.. |
| 82 | */ |
| 83 | @Test |
| 84 | void testPlatformEnum() { |
| 85 | assertThat("Unsupported OS", SystemInfo.getCurrentPlatform(), is(not(PlatformEnum.UNKNOWN))); |
| 86 | // Exercise the main method |
| 87 | main(null); |
| 88 | } |
| 89 | |
| 90 | /** |
| 91 | * The main method, demonstrating use of classes. |
nothing calls this directly
no test coverage detected