feat: add test for assumeFalse

This commit is contained in:
Daniel Garrett 2020-07-07 16:14:30 +01:00
parent 278b5f8efa
commit ecff38abf6
1 changed files with 9 additions and 2 deletions

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