| package javax.faces.component; | |
| import org.apache.shale.test.jmock.AbstractJmockJsfTestCase; | |
| /** | |
| * Abstract basis clazz for Apache MyFaces' test kit. | |
| * | |
| * @author Matthias Wessendorf | |
| */ | |
| public abstract class AbstractComponentTest extends AbstractJmockJsfTestCase | |
| { | |
| public AbstractComponentTest(String arg0) | |
| { | |
| super(arg0); | |
| } | |
| /** | |
| * TODO | |
| */ | |
| protected void setUp() throws Exception | |
| { | |
| super.setUp(); | |
| } | |
| /** | |
| * TODO | |
| */ | |
| protected void tearDown() throws Exception | |
| { | |
| super.tearDown(); | |
| } | |
| } |