AppTest.java

Download AppTest.java

 1: package com.wpollock.hello;
 2: 
 3: import org.junit.jupiter.api.*;
 4: import static org.junit.jupiter.api.Assertions.*;
 5: 
 6: /**
 7:  * Unit test for simple App.
 8:  * @author Wayne Pollock, Tampa Florida USA
 9:  */
10: public class AppTest {
11:     /**
12:      * A thorough test!
13:      */
14:     @Test
15:     public void testApp() {
16:         assertTrue( true );
17:     }
18: }