1 22 package org.jboss.test.aop.regression.ejbthree315; 23 24 import org.jboss.test.aop.AOPTestWithSetup; 25 26 public class UnderscoreMethodTester extends AOPTestWithSetup 27 { 28 29 public static void main(String [] args) 30 { 31 junit.textui.TestRunner.run(UnderscoreMethodTester.class); 32 } 33 34 public UnderscoreMethodTester(String arg0) 35 { 36 super(arg0); 37 } 38 39 public void testMethodWithUnderscoreInName() throws Exception  40 { 41 POJO pojo = new POJO(); 42 MyInterceptor.intercepted = false; 43 pojo._methodwithunderscore(); 44 assertTrue(MyInterceptor.intercepted); 45 } 46 } | Popular Tags |