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 com.germinus.easyconf.AllTests.java

/**
 * Launches all the tests of EasyConf
 *
 * @version $Revision: 1.1 $
 */
public class AllTests extends TestCase {

From source file org.esigate.xml.XpathRendererTest.java

public class XpathRendererTest extends TestCase {

    /**
     * Tests xpath expression evaluation for an html document.
     * 
     * @throws Exception

From source file org.sipfoundry.sipxconfig.phone.unidata.UnidataPhonebookTest.java

public class UnidataPhonebookTest extends TestCase {
    private ProfileGenerator m_pg;
    private MemoryProfileLocation m_location;

    @Override
    protected void setUp() {

From source file org.sipfoundry.sipxconfig.phone.aastra.AastraPhonebookTest.java

public class AastraPhonebookTest extends TestCase {
    private ProfileGenerator m_pg;
    private MemoryProfileLocation m_location;

    protected void setUp() {
        m_location = new MemoryProfileLocation();

From source file org.sipfoundry.sipxconfig.phone.lg_nortel.LgNortelPhonebookTest.java

public class LgNortelPhonebookTest extends TestCase {
    private ProfileGenerator m_pg;
    private MemoryProfileLocation m_location;

    protected void setUp() {
        m_location = new MemoryProfileLocation();

From source file org.sipfoundry.sipxconfig.service.PresenceRoutingConfigurationTest.java

public class PresenceRoutingConfigurationTest extends TestCase {

    public void testXmlGeneration() throws Exception {
        CoreContext coreContext = EasyMock.createMock(CoreContext.class);
        List<User> users = new ArrayList<User>();

From source file org.jasig.cas.web.flow.DynamicRedirectViewSelectorTests.java

/**
 * 
 * @author Scott Battaglia
 * @version $Revision: 1.1 $ $Date: 2005/08/19 18:27:17 $
 * @since 3.1
 *

From source file twitter4j.TwitterExceptionTest.java

/**
 * @author Yusuke Yamamoto - yusuke at mac.com
 * @since Twitter4J 2.1.3
 */
public class TwitterExceptionTest extends TestCase {
    public TwitterExceptionTest(String name) {

From source file gda.spring.propertyeditors.RealVectorPropertyEditorTest.java

public class RealVectorPropertyEditorTest extends TestCase {

    public void testConversion() {
        RealVectorPropertyEditor pe = new RealVectorPropertyEditor();
        assertNull(pe.getValue());
        String text = "{1,2,3,4}";

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

/**
 * Unit test for {@link MemInfoItem}.
 */
public class MemInfoItemTest extends TestCase {

    /**