View Javadoc

1   package com.flexiblewebsolutions.xdriveunit;
2   
3   import java.io.File;
4   
5   /***
6    * Interface that defines behavior of implementing classes.
7    * 
8    * @author Donavon Buss
9    */
10  abstract interface XDriveTest {
11  	public abstract String getClassName();
12  
13  	public abstract File getTestDirectory();
14  
15  	public abstract File getTestTmpDirectory();
16  }