Example usage for junit.framework TestCase subclass-usage

List of usage examples for junit.framework TestCase subclass-usage

Introduction

In this page you can find the example usage for junit.framework TestCase subclass-usage.

Usage

From source file org.sipfoundry.sipxconfig.phone.ciscoplus.CiscoplusPhoneTest.java

public class CiscoplusPhoneTest extends TestCase {

    private CiscoplusPhone m_phone;

    @Override
    protected void setUp() {

From source file dk.statsbiblioteket.alto.AlphabetTest.java

public class AlphabetTest extends TestCase {
    private static Log log = LogFactory.getLog(AlphabetTest.class);

    public void testAlphabetBasic() {
        final long[] ENTRIES = new long[] { 1, 2, 3, 3, 1, 4 };
        Alphabet alphabet = new Alphabet();

From source file com.headstrong.fusion.commons.expression.ExpressionResolverTest.java

/**
 * 
 */
public class ExpressionResolverTest extends TestCase {

    public void testResolver() throws Exception {

From source file edu.uci.ics.jung.algorithms.importance.TestWeightedNIPaths.java

/**
 * @author Scott White, adapted to jung2 by Tom Nelson
 */
public class TestWeightedNIPaths extends TestCase {

    Factory<String> vertexFactory;

From source file org.folg.names.score.CoderTest.java

/**
 * User: dallan
 * Date: 1/27/12
 */
public class CoderTest extends TestCase {
    public CoderTest(String name) {

From source file org.sipfoundry.sipxconfig.phone.isphone.IsphoneTest.java

public class IsphoneTest extends TestCase {

    public void testGenerateProfiles() throws Exception {
        PhoneModel model = new PhoneModel("isphone");
        model.setModelId("isphone notes");
        model.setLabel("Isphone notes");

From source file nz.ac.aut.ense701.gamemodel.ScoreBoardTest.java

/**
 *
 * @author aashi
 */
public class ScoreBoardTest extends junit.framework.TestCase {
    private static final String ENCODING = "UTF-8";

From source file ome.formats.utests.ImportConfigTest.java

/**
 * Various configuration workflows
 * 
 * @author Josh Moore, josh at glencoesoftware.com
 * @see ImportFixture
 * @see ImportReader

From source file com.github.veithen.ulog.itest.slf4j.nop.Test.java

public class Test extends TestCase {
    public void testCommonsLogging() {
        assertEquals("org.apache.commons.logging.impl.NoOpLog", LogFactory.getLog("test").getClass().getName());
    }

    public void testSLF4J() {

From source file edu.harvard.med.screensaver.util.CollectionUtilsTest.java

public class CollectionUtilsTest extends TestCase {
    private static Logger log = Logger.getLogger(CollectionUtilsTest.class);

    private static class Struct {
        Integer key;
        String value;