Update StringToBooleanUnitTest.java

This commit is contained in:
Jordan Simpson
2020-07-10 08:52:48 -05:00
committed by GitHub
parent 944725473e
commit 0ab28367a1

View File

@@ -24,6 +24,7 @@ public class StringToBooleanUnitTest {
@Test
public void givenSystemProperty_whenUsingGetBoolean_thenTrue() {
System.setProperty("CODING_IS_FUN", "true");
assertThat(Boolean.getBoolean("CODING_IS_FUN")).isTrue();
}
}