blob: a386dacb44eb87d8bc1c02482cca95362b86fb7d [file] [log] [blame]
#set( $symbol_pound = '#' )
#set( $symbol_dollar = '$' )
#set( $symbol_escape = '\' )
package ${package};
import junit.framework.TestCase;
/**
* Test cases for {@link ${command}}
*/
@SuppressWarnings("unchecked")
public class ${command}Test extends TestCase {
private ${command} command;
@Override
protected void setUp() throws Exception {
super.setUp();
}
@Override
protected void tearDown() throws Exception {
super.tearDown();
}
public void testCommand() {
}
}