office-gobmx/qadevOOo/qa/complex/junitskeleton/justatest.java
2010-08-23 10:38:44 +02:00

38 lines
757 B
Java

/**
* @author: ll93751
* @copyright: Sun Microsystems Inc. 2010
*/
package complex.junitskeleton;
public class justatest /* extends *//* implements */ {
//public static void main( String[] argv ) {
//
// }
public void justatest()
{
System.out.println("justatest CTor.");
}
public void testfkt()
{
System.out.println("Test called.");
}
/**
* Sleeps for 0.5 sec. to allow StarOffice to react on <code>
* reset</code> call.
*/
public static void shortWait()
{
try
{
Thread.sleep(500) ;
}
catch (InterruptedException e)
{
System.out.println("While waiting :" + e) ;
}
}
}