blob: 7ee83d95b778909a0933e8cc15be7e882d20f89c [file]
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();
}
}