/* * To change this template, choose Tools | Templates * and open the template in the editor. */ import javax.microedition.lcdui.*; import javax.microedition.midlet.*; /** * * @author daniel */ public class TestClass extends MIDlet { public TestClass() { System.out.println("GoBibleCore test class"); } public void destroyApp(boolean unconditional) { } public void pauseApp() { } public void startApp() { testSorter(); this.notifyDestroyed(); } public void testSorter() { int r[] = new int[15]; java.util.Random rand = new java.util.Random(); for (int i=0; i= r[i-1])); } } }