List of usage examples for junit.framework TestCase subclass-usage
From source file org.castor.xml.XMLConfigurationTest.java
/**
* The XMLConfiguration test has one goal - check if the proper defaults
* are in place.
*
* @author Joachim Grueneis, jgrueneis_at_gmail_dot_com
* @version $Id$
From source file org.mule.transport.legstar.test.jvmquery.JvmqueryHttpClientTest.java
/**
* Test the proxy for the Jvmquery POJO.
* <p/>
* This test does not use any of the Mule classes. It assumes the proxy service has
* been deployed in a live instance of Mule.
* <p/>
From source file com.espertech.esper.timer.TestTimeSource.java
/** * Ensure that TimeSourceMills and TimeSourceMills * agree on wall clock time. * @author Jerry Shea */ public class TestTimeSource extends TestCase {
From source file com.predic8.membrane.core.interceptor.AdjustContentLengthIntegrationTest.java
public class AdjustContentLengthIntegrationTest extends TestCase { private Router router; @Override @Before
From source file h2weibo.utils.filters.UserMappingFilterTest.java
/** * Test case for UserMappingFilter */ public class UserMappingFilterTest extends TestCase { private DBHelper helper;
From source file mangotiger.poker.pokerstars.PokerStarsTest.java
/** @author Tom Gagnier */ @SuppressWarnings({ "ClassWithoutToString", "PublicMethodNotExposedInInterface" }) public class PokerStarsTest extends TestCase { Casino factory = new PokerStars(); EventChannel channel = new EventChannelImpl();
From source file net.robotmedia.billing.model.TransactionTest.java
public class TransactionTest extends TestCase { public static final Transaction TRANSACTION_1 = new Transaction("order1", "android.test.purchased", "com.example", Transaction.PurchaseState.PURCHASED, "notificationId", new Date().getTime(), "developerPayload"); public static final Transaction TRANSACTION_2 = new Transaction("order2", "product_2", "com.example",
From source file com.adaptris.util.ByteArrayDataSourceTest.java
public class ByteArrayDataSourceTest extends TestCase { private static final String EXAMPLE_XML = "<document>" + "<root>" + "<data>abcdefg</data>" + "</root>" + "</document>"; private transient Log logR;
From source file org.sipfoundry.sipxconfig.admin.monitoring.MRTGConfigTest.java
public class MRTGConfigTest extends TestCase { private MRTGConfig m_mrtgConfig; private File m_mrtgTempDir; private File m_mrtgConfigFile; protected void setUp() throws Exception {
From source file v7db.files.spi.ChunkedContentTest.java
public class ChunkedContentTest extends TestCase { public void testSimpleConcatenation() throws IOException { ChunkedContent c = new ChunkedContent(new InlineContent("first chunk".getBytes()), new InlineContent(" second chunk".getBytes()));