Implemented AssertThatStringIsEmpty.

This commit is contained in:
2019-03-24 09:15:07 +01:00
parent 8051511524
commit 5fa61a3004
12 changed files with 166 additions and 69 deletions
@@ -0,0 +1,11 @@
import static org.assertj.core.api.Assertions.assertThat;
public class StringIsEmpty {
private void stringIsEmpty() {
String string = "string";
assertThat(string).isEqualTo("foo");
assertThat(string).isEqualTo("");
}
}