1 22 package org.jboss.test.aop.marshalling; 23 24 import org.jboss.test.aop.AOPTestWithSetup; 25 26 32 public class MarshallingTester extends AOPTestWithSetup 33 { 34 35 39 public MarshallingTester(String arg0) 40 { 41 super(arg0); 42 } 43 44 public void testMarshalling() 45 { 46 POJO pojo = new POJO(); 47 pojo.method(); 48 pojo.method("abc", new Long (5), 42); 49 } 50 51 } 52 | Popular Tags |