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 nz.ac.aut.ense701.gamequiz.QuizFileReaderTest.java

/**
 *
 * @author aashi
 */
public class QuizFileReaderTest extends junit.framework.TestCase {
    private static final String TEST_MESSAGE = "Test Message 1";

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

public class AudioCodesFxsGatewayTest extends TestCase {

    public void testGenerateTypicalProfiles() throws Exception {
        for (DeviceVersion v : AudioCodesFxsModel.VERSIONS) {
            doTestGenerateTypicalProfiles(v);
        }

From source file com.networknt.light.util.UtilTest.java

/**
 * Created by steve on 05/01/15.
 */
public class UtilTest extends TestCase {
    ObjectMapper mapper = new ObjectMapper();

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

/**
 * Various configuration workflows
 *
 * @author Josh Moore, josh at glencoesoftware.com
 * @since Beta4.4
 */

From source file test.edu.uci.ics.jung.graph.predicates.GraphPredicateTest.java

/**
 * 
 * @author Joshua O'Madadhain
 */
public class GraphPredicateTest extends TestCase {
    private Graph g1;

From source file examples.SpringTest.java

public class SpringTest extends TestCase {
    public void testSimple() {
        ApplicationContext context = new ClassPathXmlApplicationContext("examples/spring.xml");
        Yaml yaml = (Yaml) context.getBean("standardYaml");
        assertNotNull(yaml);
        //

From source file org.eclipse.mylyn.internal.gerrit.core.client.GerritHtmlProcessorTest.java

public class GerritHtmlProcessorTest extends TestCase {
    @Test
    public void testHTMLProcessorGerrit2_6() throws Exception {
        GerritHtmlProcessor processor = new GerritHtmlProcessor();
        ByteArrayInputStream input = new ByteArrayInputStream(
                read("testdata/wikimedia-gerrit-2.7.html").getBytes()); //$NON-NLS-1$

From source file org.springmodules.validation.bean.conf.loader.xml.AbstractResourceBasedBeanValidationConfigurationLoaderTests.java

/**
 * Tests for {@link org.springmodules.validation.bean.conf.loader.xml.AbstractResourceBasedBeanValidationConfigurationLoader}.
 *
 * @author Uri Boness
 */
public class AbstractResourceBasedBeanValidationConfigurationLoaderTests extends TestCase {

From source file com.android.loganalysis.item.SmartMonkeyLogItemTest.java

/**
 * Unit test for {@link SmartMonkeyLogItem}.
 */
public class SmartMonkeyLogItemTest extends TestCase {
    /**
     * Test that {@link SmartMonkeyLogItem#toJson()} returns correctly.

From source file samples.swa.SwaTestCase.java

/**
 * Test the SwA sample code.
 */
public class SwaTestCase extends TestCase {

    /** Field log */