public class PointTests { public void testMoveToOrigin() { } public void testMove1() { } //======================================= public static void main(String[] args) { PointTests test = new PointTests(); test.testMoveToOrigin(); test.testMove1(); } }