import javax.swing.JFrame; public class mainClass { public static void main(String[] args) { JFrame window = new JFrame(); window.setSize(640, 480); window.setTitle("KA-visual"); window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); window.setVisible(true); if (getUrlResultsTest.runTest()) { System.out.println("\n\nGetUrlResultsTest: [OK] Test completed successfully!"); } else { System.out.println("\n\nGetUrlResultsTest: [Error] The test did not complete successfully."); } //getUrlResults("EXEMP???"); } }