package com.wpollock.hello;
import org.junit.jupiter.api.*;
import static org.junit.jupiter.api.Assertions.*;
/**
* Unit test for simple App.
* @author Wayne Pollock, Tampa Florida USA
*/
public class AppTest {
/**
* A thorough test!
*/
@Test
public void testApp() {
assertTrue( true );
}
}