1 22 package org.jboss.test.aop.regression.annotatedIntroduction; 23 24 25 import org.jboss.test.aop.AOPTestWithSetup; 26 27 import junit.framework.Test; 28 import junit.framework.TestSuite; 29 30 36 public class AOPTester extends AOPTestWithSetup 37 { 38 public static Test suite() 39 { 40 TestSuite suite = new TestSuite("AOPTester"); 41 suite.addTestSuite(AOPTester.class); 42 return suite; 43 } 44 47 49 public AOPTester(String name) 51 { 52 super(name); 53 } 54 55 public void testRegression() 56 { 57 POJO pojo = new POJO(); 58 ((Introduction) pojo).hello(); 59 } 60 61 } 62 63 | Popular Tags |