Newer
Older
KA-Visual / src / mainClass.java
Jonathan Ström on 21 Feb 2017 342 bytes Improved the tests.
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);
		
		getUrlResultsTest.runAll();
		
		//getUrlResults("EXEMP???");
	}
}