feat: add test for assumeFalse

This commit is contained in:
Daniel Garrett
2020-07-07 16:14:30 +01:00
parent b296241de6
commit 6a3a2a2fdc

View File

@@ -2,8 +2,7 @@ package com.baeldung.assume;
import static org.hamcrest.Matchers.is;
import static org.junit.Assert.assertEquals;
import static org.junit.Assume.assumeThat;
import static org.junit.Assume.assumeTrue;
import static org.junit.Assume.*;
import org.junit.Test;
@@ -26,6 +25,14 @@ public class ConditionallyIgnoreTestsUnitTest {
assertEquals("hello", "HELLO".toLowerCase());
}
@Test
public void whenAssumeFalseOnCondition_thenIgnore() {
final int codeVersion = 2;
assumeFalse(isCodeVersion2(codeVersion));
assertEquals("hello", "HELLO".toLowerCase());
}
private boolean isCodeVersion2(final int codeVersion) {
return codeVersion == 2;
}