01: package com.clarkware.junitperf; 02: 03: import junit.framework.TestCase; 04: 05: public class MockTestFactoryTest extends TestCase { 06: 07: public MockTestFactoryTest(String name) { 08: super (name); 09: } 10: 11: public void testSuccess() { 12: } 13: 14: public void testFailure() { 15: fail(); 16: } 17: }