1 25 package org.objectweb.easybeans.tests.deploymentdesc; 26 27 import org.objectweb.easybeans.tests.common.ejbs.stateful.containermanaged.interceptorxml.ItfInterceptorTester01; 28 import org.objectweb.easybeans.tests.common.ejbs.stateful.containermanaged.interceptorxml.SFSBInterceptorTester01; 29 import org.objectweb.easybeans.tests.common.helper.EJBHelper; 30 import org.testng.annotations.BeforeMethod; 31 import org.testng.annotations.Test; 32 33 44 public class TestInterceptor01 { 45 46 49 private ItfInterceptorTester01 tester; 50 51 52 56 @BeforeMethod 57 public void setup() throws Exception { 58 tester = EJBHelper.getBeanRemoteInstance(SFSBInterceptorTester01.class, ItfInterceptorTester01.class); 59 } 60 61 67 @Test 68 public void testInterceptorOrder01() { 69 tester.testInterceptorOrder01(); 70 } 71 72 80 @Test 81 public void testInterceptorOrder02() { 82 tester.testInterceptorOrder02(); 83 } 84 85 90 @Test 91 public void testInterceptorOrder03() { 92 tester.testInterceptorOrder03(); 93 } 94 } 95 | Popular Tags |