Subversion Repositories programming

Rev

Rev 54 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 54 Rev 55
Line 4... Line 4...
4
 
4
 
5
class Driver {
5
class Driver {
6
 
6
 
7
    public static void main ( String [] args ) throws Exception {
7
    public static void main ( String [] args ) throws Exception {
8
        Test test = new Test();
8
        Test test = new Test();
9
        test.runTest1();    
9
        test.test1();
-
 
10
 
-
 
11
        System.out.println();
-
 
12
        test.test2();
-
 
13
 
-
 
14
        System.out.println();
-
 
15
        test.test3();
-
 
16
 
-
 
17
        System.out.println();
-
 
18
        test.test4();
-
 
19
 
-
 
20
        System.out.println();
-
 
21
        test.test5();
-
 
22
 
-
 
23
        System.out.println();
-
 
24
        test.test6();
-
 
25
 
-
 
26
        System.out.println();
-
 
27
        test.test7();
10
    }
28
    }
11
 
29
 
12
}
30
}
13
 
31