package org.jboss.test.aop.nonjunit;
import javax.naming.InitialContext;
import org.jboss.test.JBossTestCase;
import junit.framework.Test;
import java.net.InetAddress;
import javax.management.ObjectName;
import org.jboss.jmx.adaptor.rmi.RMIAdaptor;
import org.jboss.test.aop.bean.AOPTester;
import junit.framework.*;
public class StandaloneTest
extends TestCase
{
static boolean deployed = false;
static int test = 0;
AOPTester tester = new AOPTester();
public StandaloneTest(String name) {
super(name);
}
public void testMethodInterception() throws Exception
{
tester.testMethodInterception();
}
public void testFieldInterception() throws Exception
{
tester.testFieldInterception();
}
public void testBasic() throws Exception
{
tester.testBasic();
}
public void testAspect() throws Exception
{
tester.testAspect();
}
public void testCallerPointcut() throws Exception
{
tester.testCallerPointcut();
}
public void testInheritance() throws Exception
{
tester.testInheritance();
}
public void testMetadata() throws Exception
{
tester.testMetadata();
}
public void testDynamicInterceptors() throws Exception
{
tester.testDynamicInterceptors();
}
public void testMixin() throws Exception
{
tester.testMixin();
}
public void testConstructorInterception() throws Exception
{
tester.testConstructorInterception();
}
public void testExceptions() throws Exception
{
tester.testExceptions();
}
public static Test suite() throws Exception
{
TestSuite suite = new TestSuite();
suite.addTest(new TestSuite(StandaloneTest.class));
return suite;
}
}