1 /** 2 * @author: ll93751 3 * @copyright: Sun Microsystems Inc. 2010 4 */ 5 6 package complex.junitskeleton; 7 8 public class justatest /* extends *//* implements */ { 9 //public static void main( String[] argv ) { 10 // 11 // } 12 public void justatest() 13 { 14 System.out.println("justatest CTor."); 15 } 16 17 public void testfkt() 18 { 19 System.out.println("Test called."); 20 } 21 22 /** 23 * Sleeps for 0.5 sec. to allow StarOffice to react on <code> 24 * reset</code> call. 25 */ 26 public static void shortWait() 27 { 28 try 29 { 30 Thread.sleep(500) ; 31 } 32 catch (InterruptedException e) 33 { 34 System.out.println("While waiting :" + e) ; 35 } 36 } 37 38 } 39