OnJava8-Examples/validating/FirstJUnit5Tests.java

16 lines
453 B
Java
Raw Normal View History

2016-08-29 07:27:53 -06:00
// validating/FirstJUnit5Tests.java
// (c)2016 MindView LLC: see Copyright.txt
// We make no guarantees that this code is fit for any purpose.
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
2016-08-29 07:27:53 -06:00
package validating;
2016-08-23 12:33:38 -06:00
import org.junit.jupiter.api.*;
import static org.junit.jupiter.api.Assertions.*;
class FirstJUnit5Tests {
@Test
void myFirstTest() {
System.out.println("FirstJUnit5Tests");
assertEquals(2, 1 + 1);
}
}