Implemented AssertThatStringIsEmpty.
This commit is contained in:
@@ -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("");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user