View Javadoc

1   package javax.faces.component;
2   
3   import org.apache.shale.test.jmock.AbstractJmockJsfTestCase;
4   
5   /**
6    * Abstract basis clazz for Apache MyFaces' test kit.
7    * 
8    * @author Matthias Wessendorf
9    */
10  public abstract class AbstractComponentTest extends AbstractJmockJsfTestCase
11  {
12    public AbstractComponentTest(String arg0)
13    {
14      super(arg0);
15    }
16    
17    /**
18     * TODO
19     */
20    protected void setUp() throws Exception
21    {
22        super.setUp();
23    }
24  
25    /**
26     * TODO
27     */
28    protected void tearDown() throws Exception
29    {
30        super.tearDown();
31    }
32  }