Mher Baghinyan d6ecd16755 Bael 1864 (#4727)
* running project without building tests

* include the DataCheck class

* Update TestFail.java
2018-07-20 15:52:34 +02:00

16 lines
289 B
Java

package testfail;
import org.junit.Test;
import static org.junit.Assert.assertNotNull;
public class TestFail {
@Test
public void whenMessageAssigned_thenItIsNotNull() {
String message = "hello there";
message = null;
assertNotNull(message);
}
}