List of usage examples for junit.framework TestCase subclass-usage
From source file edu.uci.ics.jung.algorithms.scoring.TestBetweennessCentrality.java
/** * */ public class TestBetweennessCentrality extends TestCase { // public void testUndirected() { // UndirectedGraph<Integer,Integer> graph =
From source file org.sipfoundry.sipxconfig.admin.BackupPlanTest.java
public class BackupPlanTest extends TestCase { private BackupPlan m_backup; @Override protected void setUp() throws Exception {
From source file org.testdwr.plain.SeleniumDrivenTest.java
/** * @author Joe Walker [joe at getahead dot ltd dot uk] */ public class SeleniumDrivenTest extends TestCase { private static final String[] ONE_TO_FIVE = new String[] { "One", "Two", "Three", "Four", "Five" };
From source file com.legstar.jaxb.plugin.EnumCases.java
/** * Testing enumerations. * */ public class EnumCases extends TestCase {
From source file org.impalaframework.extension.mvc.annotation.collector.ModelArgumentCollectorTest.java
public class ModelArgumentCollectorTest extends TestCase { public void testGetArgument() { ModelArgumentCollector collector = new ModelArgumentCollector(); ExtendedModelMap implicitModel = new ExtendedModelMap(); assertSame(implicitModel,
From source file org.sipfoundry.sipxconfig.gateway.audiocodes.AudioCodesBRIGatewayTest.java
public class AudioCodesBRIGatewayTest extends TestCase { private ModelFilesContext m_modelFilesContext; private AudioCodesGateway m_gateway; @Override protected void setUp() throws Exception {
From source file org.ambraproject.configuration.OverrideTest.java
public class OverrideTest extends TestCase { private static Configuration conf = null; protected void setUp() throws ConfigurationException { System.setProperty(ConfigurationStore.OVERRIDES_URL, "ambra/configuration/defaults-dev.xml"); System.setProperty("conf.test", "goodbye world");
From source file org.asqatasun.rules.elementchecker.doctype.DoctypeHtml5CheckerTest.java
/** * * @author jkowalczyk */ public class DoctypeHtml5CheckerTest extends TestCase {
From source file org.broadleafcommerce.common.util.EfficientLRUMapTest.java
public class EfficientLRUMapTest extends TestCase { public void testMapSwitch() { EfficientLRUMap<String, String> testMap = new EfficientLRUMap<String, String>(5); // Test basics for a single name value pair
From source file org.romaz.spring.scripting.ext.rhino.RhinoScriptFactoryTest.java
/** * * @author Davide Romanini */ public class RhinoScriptFactoryTest extends TestCase {