List of usage examples for junit.framework TestCase subclass-usage
From source file gov.nih.nci.cadsrapi.jUnit.applicationService.impl.ORMTest.java
public class ORMTest extends TestCase { public void test1() { ApplicationContext ctx = new ClassPathXmlApplicationContext("Spring-Config.xml"); TestDAO dao = (TestDAO) ctx.getBean("DAO"); CartObject o = new CartObject(); o.setData("My Data");
From source file gov.nih.nci.cabig.caaers.utils.ranking.RankerTest.java
/** * @author: Biju Joseph */ public class RankerTest extends TestCase { public void testRank() throws Exception {
From source file org.sipfoundry.sipxconfig.phone.cisco.CiscoAtaPhoneTest.java
public class CiscoAtaPhoneTest extends TestCase { private CiscoModel m_model; protected void setUp() { m_model = new CiscoModel("ciscoAta"); }
From source file com.almende.eve.test.TestDebug.java
/** * The Class TestAgents. */ public class TestDebug extends TestCase { /**
From source file com.pureinfo.srm.reports.table.MyTabeleDataHelperTest.java
/**
* <P>
* Created on 2005-12-30 10:14:41<BR>
* Last modified on 2005-12-30
* </P>
* TODO describe MyTabeleDataHelperTest here ...
From source file com.almende.test.dht.TestScale.java
/** * The Class TestAgent. */ public class TestScale extends TestCase { private static final int NOFNODES = 1000;
From source file com.apptentive.android.sdk.tests.module.messagecenter.JsonObjectBindingTest.java
/**
* This is a simple framework for a test of an Application. See
* {@link android.test.ApplicationTestCase ApplicationTestCase} for more information on
* how to write and extend Application tests.
* <p/>
* To run this test, you can type:
From source file gov.nih.nci.cabig.caaers.web.rule.ManageSafetyNotificationCommandTest.java
/** * @author Biju Joseph * @date 3/23/12 */ public class ManageSafetyNotificationCommandTest extends TestCase {
From source file org.shelloid.netverif.test.suite.VerificationTestCase.java
public final class VerificationTestCase extends TestCase { private boolean fromSuite() { final String cl = this.getClass().getClassLoader().getClass().getName(); ClassLoader loader = this.getClass().getClassLoader(); int i = 0;
From source file org.sipfoundry.sipxconfig.device.FilteredModelSourceTest.java
public class FilteredModelSourceTest extends TestCase { private List<PhoneModel> m_models; private FilteredModelSource m_modelSource; private ModelSource m_mockSource;