package pizzaorder; import junit.framework.TestCase; /** * * @author jdalbey */ public class SampleTest extends TestCase { public SampleTest(String testName) { super(testName); } @Override protected void setUp() throws Exception { super.setUp(); } @Override protected void tearDown() throws Exception { super.tearDown(); } public void testInit() { // Test that constructor doesn't crash GUI gui = new GUI(); } }