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 s) {
14 super(s);
15 }
16
17 public void test()throws Exception{
18
19 TransformDemo.main( null );
20
21 }
22
23 public static void main(String[] args) {
24 junit.textui.TestRunner.run(suite());
25 }
26
27 public static Test suite() {
28 return new TestSuite(TestDemo.class);
29 }
30
31 }
This page was automatically generated by Maven