List of usage examples for junit.framework TestCase subclass-usage
From source file org.sipfoundry.sipxconfig.rest.PhonebookResourceTest.java
public class PhonebookResourceTest extends TestCase { private PhonebookEntry m_entry; @Override protected void setUp() throws Exception { m_entry = new PhonebookEntry();
From source file org.apache.ojb.ejb.pb.StressTestClient.java
/**
*
*
* @author <a href="mailto:arminw@apache.org">Armin Waibel</a>
* @version $Id: StressTestClient.java,v 1.1 2007-08-24 22:17:37 ewestfal Exp $
*/
From source file com.alibaba.simpleimage.BaseTest.java
/** * BaseTest.java??TODO ?? * @author wendell 2011-8-17 ?04:18:21 */ public class BaseTest extends TestCase { public static File resultDir = new File("./src/test/resources/conf.test/simpleimage/result");
From source file com.symbian.utils.cmdline.argscheckers.test.TestNumericData.java
/** * @author EngineeringTools */ public class TestNumericData extends TestCase { NumericData lFilterUnderTest = new NumericData();
From source file org.apache.ojb.ejb.odmg.StressTestClient.java
/**
*
*
* @author <a href="mailto:arminw@apache.org">Armin Waibel</a>
* @version $Id: StressTestClient.java,v 1.1 2007-08-24 22:17:30 ewestfal Exp $
*/
From source file gov.nih.nci.cabig.ctms.web.tabs.DefaultTabConfigurerTest.java
/** * @author Rhett Sutphin */ public class DefaultTabConfigurerTest extends TestCase { private StaticApplicationContext applicationContext; private DefaultTabConfigurer configurer;
From source file ome.formats.utests.BasicImporterClientTest.java
/**
* Simple tests which show the basic way to configure a client.
*
* @author Josh Moore, josh at glencoesoftware.com
* @see ImportFixture
* @see ImportReader
From source file org.rifidi.emulator.reader.command.sentinel.InteractiveCommandSentinelTest.java
/**
*
*
* @author Matthew Dean - matt@pramari.com
* @since <$INITIAL_VERSION$>
* @version <$CURRENT_VERSION$>
From source file org.rifidi.emulator.reader.control.adapter.RelativeReflectiveCommandAdapterTest.java
/** * Tests the RelativeReflectiveCommandAdapter. * * @author Matthew Dean - matt@pramari.com */ public class RelativeReflectiveCommandAdapterTest extends TestCase {
From source file org.jboss.tools.common.util.test.HttpUtilTest.java
public class HttpUtilTest extends TestCase { public void testCreateHttpClient() throws IOException { HttpClient client = HttpUtil.createHttpClient("http://www.jboss.com"); assertNotNull("HTTP Client object wasn't created", client); }