View Javadoc
1   package test.integration;
2   
3   /**
4    * The parent interface for TestBase with and without db and all test cases with and without db
5    * 
6    * @author IntegrationsProjekt
7    * 
8    */
9   public interface TestBaseInterface {
10  	
11  	/**
12  	 * prepare the test cases.
13  	 * 
14  	 * @throws Exception
15  	 */
16  	void setUp() throws Exception;
17  	
18  	/**
19  	 * clean up the test cases.
20  	 * 
21  	 * @throws Exception
22  	 */
23  	void tearDown() throws Exception;
24  	
25  }