1 /*
2  * Copyright (c) 2004-2010, P. Simon Tuffs (simon@simontuffs.com)
3  * All rights reserved.
4  *
5  * See the full license at http://one-jar.sourceforge.net/one-jar-license.html
6  * This license is also included in the distributions of this software
7  * under doc/one-jar-license.txt
8  */
9 package jogamp.test;
10 
11 import com.simontuffs.onejar.test.Testable;
12 
13 public class Test extends Testable {
14 
main(String args[])15     public static void main(String args[]) throws Exception {
16         Test test = new Test();
17         test.runTests();
18     }
19 
20     // Test other aspects of the application at unit level (e.g. library
21     // methods).
testJogamp011()22     public void testJogamp011() {
23         System.out.println("testJogamp011: OK");
24     }
testJogamp012()25     public void testJogamp012() {
26         System.out.println("testJogamp012: OK");
27     }
testJogamp013()28     public void testJogamp013() {
29         System.out.println("testJogamp013: OK");
30     }
31 
32 }
33