OnJava8-Examples/verifying/FirstJUnit5Tests.java
2016-08-27 10:12:56 -06:00

16 lines
451 B
Java

// verifying/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.
package verifying;
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);
}
}