OnJava8-Examples/verifying/FirstJUnit5Tests.java

15 lines
417 B
Java
Raw Normal View History

// 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;
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() {
assertEquals(2, 1 + 1);
}
}