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 au.org.ala.delta.rtf.RTFUtilsTest.java

/**
 * Tests the RTFUtils class.
 */
public class RTFUtilsTest extends TestCase {

    /**

From source file ubic.gemma.core.loader.expression.arrayExpress.SDRFFetcherTest.java

/**
 * @author paul
 */
public class SDRFFetcherTest extends TestCase {

    private static final Log log = LogFactory.getLog(SDRFFetcherTest.class.getName());

From source file org.eclipse.gemini.blueprint.test.provisioning.internal.LocalFileSystemMavenRepositoryTest.java

/**
 * @author Costin Leau
 * 
 */
public class LocalFileSystemMavenRepositoryTest extends TestCase {

From source file org.acoustid.util.FingerprintCompressorTest.java

public class FingerprintCompressorTest extends TestCase {

    public FingerprintCompressorTest(String testName) {
        super(testName);
    }

From source file org.fusesource.cloudmix.common.dto.JaxbTest.java

/**
 * @version $Revision$
 */
public class JaxbTest extends TestCase {
    protected final transient Log log = LogFactory.getLog(getClass());
    protected JAXBContext jaxbContext;

From source file org.sipfoundry.sipxconfig.gateway.audiocodes.AudioCodesDigitalGatewayTest.java

public class AudioCodesDigitalGatewayTest extends TestCase {
    private ModelFilesContext m_modelFilesContext;
    private AudioCodesGateway m_gateway;

    @Override
    protected void setUp() throws Exception {

From source file org.springmodules.cache.provider.CacheManagerFactoryBeanTests.java

/**
 * <p>
 * Unit Tests for <code>{@link AbstractCacheManagerFactoryBean}</code>.
 * </p>
 * 
 * @author Alex Ruiz

From source file com.espertech.esper.core.deploy.TestEPLModuleUtil.java

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

    public void testParse() {

        Object[][] testdata = new Object[][] {

From source file ubic.gemma.core.loader.entrez.pubmed.ESearchXMLParserTest.java

/**
 * @author pavlidis
 */
public class ESearchXMLParserTest extends TestCase {

    private static final Log log = LogFactory.getLog(ESearchXMLParserTest.class.getName());

From source file org.archive.net.UURITest.java

public class UURITest extends TestCase {
    public void testHasScheme() {
        assertTrue(UURI.hasScheme("http://www.archive.org"));
        assertTrue(UURI.hasScheme("http:"));
        assertFalse(UURI.hasScheme("ht/tp://www.archive.org"));
        assertFalse(UURI.hasScheme("/tmp"));