List of usage examples for junit.framework TestCase subclass-usage
From source file com.almende.eve.test.TestDelete.java
/** * The Class TestAgents. */ public class TestDelete extends TestCase { /**
From source file com.almende.eve.test.TestProxy.java
/** * The Class TestRpc. */ public class TestProxy extends TestCase { private static final Logger LOG = Logger.getLogger(TestProxy.class.getName());
From source file it.imtech.bookimporter.BookUtilityTest.java
/** * * @author mede318 */ public class BookUtilityTest extends TestCase { public final static String DEBUG_XML = "xml" + File.separator + "config.xml";
From source file com.sxc.lucene.analysis.codec.CodecTest.java
public class CodecTest extends TestCase { public void testMetaphone() throws Exception { Metaphone metaphoner = new Metaphone(); assertEquals(metaphoner.encode("cute"), metaphoner.encode("cat")); } }
From source file com.symbian.utils.cmdline.argscheckers.test.TestEpocTargetData.java
/** * @author EngineeringTools */ public class TestEpocTargetData extends TestCase { public void test() {
From source file CountedList.java
public class JUnitDemo extends TestCase { private CountedList list = new CountedList(); // You can use the constructor instead of setUp(): public JUnitDemo(String name) { super(name);
From source file com.symbian.utils.cmdline.argscheckers.test.TestEpocVariantData.java
/** * @author EngineeringTools */ public class TestEpocVariantData extends TestCase { public void test() {
From source file org.sipfoundry.sipxconfig.admin.CronScheduleTest.java
public class CronScheduleTest extends TestCase { protected void setUp() throws Exception { super.setUp(); }
From source file org.intermine.util.FormattedTextParserTest.java
/**
* Tests for the TextFileUtil class.
*
* @author Kim Rutherford
*/
From source file com.mathworks.xzheng.analysis.codec.CodecTest.java
public class CodecTest extends TestCase { public void testMetaphone() throws Exception { Metaphone metaphoner = new Metaphone(); assertEquals(metaphoner.encode("cute"), metaphoner.encode("cat")); } }