BasicTestCase.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.test.jbossmx.compliance.relation; import org.jboss.test.jbossmx.compliance.TestCase; import org.jboss.test.jbossmx.compliance.relation.support.Trivial; import java.io.*; import java.util.*; import javax.management.*; import javax.management.relation.*; /** * Basic relation test * * @author <a href="mailto:Adrian.Brock@HappeningTimes.com">Adrian Brock</a>. */ public class BasicTestCase extends TestCase { public BasicTestCase(String s) { super(s); } public void testTemp() { // Full test to follow shortly } }
BasicTestCase.java |