2016-08-29 07:27:53 -06:00
|
|
|
// validating/FirstJUnit5Tests.java
|
2016-08-19 15:36:00 -06:00
|
|
|
// (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.*;
|
2016-08-19 15:36:00 -06:00
|
|
|
|
|
|
|
class FirstJUnit5Tests {
|
2016-08-27 10:12:56 -06:00
|
|
|
@Test
|
|
|
|
void myFirstTest() {
|
|
|
|
System.out.println("FirstJUnit5Tests");
|
|
|
|
assertEquals(2, 1 + 1);
|
|
|
|
}
|
2016-08-19 15:36:00 -06:00
|
|
|
}
|