KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > sf > cglib > transform > impl > TestDemo


1
2 package net.sf.cglib.transform.impl;
3
4 import junit.framework.*;
5
6 /**
7  *
8  * @author baliuka
9  */

10 public class TestDemo extends TestCase{
11     
12      /** Creates a new instance of AbstractTransformTest */
13     public TestDemo(String JavaDoc s) {
14        super(s);
15     }
16     
17     public void test()throws Exception JavaDoc{
18     
19         TransformDemo.main( null );
20     
21     }
22     
23     public static void main(String JavaDoc[] args) {
24         junit.textui.TestRunner.run(suite());
25     }
26     
27     public static Test suite() {
28         return new TestSuite(TestDemo.class);
29     }
30     
31 }
32
Popular Tags