List of usage examples for junit.framework TestCase subclass-usage
From source file com.android.loganalysis.item.SystemPropsItemTest.java
/** * Unit test for {@link SystemPropsItem}. */ public class SystemPropsItemTest extends TestCase { /**
From source file com.nineash.hutsync.client.UserTest.java
public class UserTest extends TestCase { @SmallTest public void testConstructor() throws Exception { User user = new User("mjoshi", "Megha", "Joshi", "1-650-335-5681", "1-650-111-5681", "1-650-222-5681", "test@google.com", false, 1);
From source file org.sipfoundry.sipxconfig.common.SipUriTest.java
public class SipUriTest extends TestCase { public void testFormatFullUri() { String uri = SipUri.formatIgnoreDefaultPort("First Last", "username", "example.com", 5060); assertEquals("\"First Last\"<sip:username@example.com>", uri); String uri2 = SipUri.formatIgnoreDefaultPort("First Last", "username", "example.com", 5070);
From source file org.fejoa.chunkstore.RepositoryTestBase.java
public class RepositoryTestBase extends TestCase { final protected List<String> cleanUpFiles = new ArrayList<String>(); @Override public void tearDown() throws Exception { super.tearDown();
From source file org.sipfoundry.sipxconfig.phone.linksys.LinksysPhoneTest.java
public class LinksysPhoneTest extends TestCase { private Linksys m_phone; @Override protected void setUp() {
From source file com.almende.eve.test.TestScheduling.java
/** * The Class TestScheduling. */ public class TestScheduling extends TestCase { private static final Logger LOG = Logger.getLogger(TestScheduling.class.getName());
From source file org.sipfoundry.sipxconfig.phone.ciscospa.ciscospaPhoneTest.java
public class ciscospaPhoneTest extends TestCase { // private ciscospa m_phone; // @Override // protected void setUp() {
From source file com.joanju.proparse.unittest.TestNewSyntax.java
/**
* Test all tree parsers against new syntax. These tests just run the tree
* parsers against the data/newsyntax directory. If no exceptions are thrown,
* then the tests pass. The files in the "newsyntax" directories are subject to
* change, so no other tests should be added other than the expectation that
* they parse clean.
From source file org.sipfoundry.sipxconfig.bulk.csv.CsvParserImplTest.java
public class CsvParserImplTest extends TestCase { public static final String[] NAMES = { "John", "Ringo", "Conference room", "John", "George" }; public static final String[] DESCRIPTIONS = { "Room", "Green", "", "", "" }; public void testParseLineEmpty() {
From source file org.sipfoundry.sipxconfig.upload.ZipUploadTest.java
public class ZipUploadTest extends TestCase { private File m_expandDir; private File m_zipFile; @Override protected void setUp() throws IOException {