Update StringToBooleanUnitTest.java

This commit is contained in:
Jordan Simpson 2020-07-10 08:52:48 -05:00 committed by GitHub
parent fe2bab2224
commit 9bc1cf4864
1 changed files with 1 additions and 0 deletions

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();
}
}