Refactor system property access into a new SystemProperties class

This commit is contained in:
Gary Gregory 2023-02-11 10:31:21 -05:00
parent 95a0e2b09b
commit 47a92f9879
1 changed files with 1 additions and 1 deletions

View File

@ -223,7 +223,7 @@ public class SystemPropertiesTest {
@Test
public void testGetUserCountry() {
assertNotNull(SystemProperties.getUserCountry());
assertDoesNotThrow(SystemProperties::getUserCountry);
}
@Test