31 lines
604 B
Java
31 lines
604 B
Java
/*
|
|
* To change this template, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
|
|
package graphical;
|
|
|
|
// import graphical.EnhancedComplexTestCase;
|
|
|
|
/**
|
|
*
|
|
* @author ll93751
|
|
*/
|
|
public class GraphicalComparator extends EnhancedComplexTestCase
|
|
{
|
|
|
|
// @Override
|
|
public String[] getTestMethodNames() {
|
|
return new String[]{"check"};
|
|
}
|
|
|
|
public void check()
|
|
{
|
|
}
|
|
|
|
public void checkOneFile(String _sDocument, String _sResult, ParameterHelper _aParams) throws OfficeException {
|
|
throw new UnsupportedOperationException("Not supported yet.");
|
|
}
|
|
|
|
}
|
|
|