package Templates.API_Support;

import org.netbeans.junit.NbTestCase;

/**
 * Test functionality of __NAME$Test$$SomeClass__.
 * @author __USER__
 */
public class NetBeansTestCase extends NbTestCase {
    
    public NetBeansTestCase(String name) {
        super(name);
    }
    
    /*
    private File scratch; // e.g.
    protected void setUp() throws Exception {
        super.setUp();
        // E.g.:
        clearWorkDir();
        scratch = getWorkDir();
    }
    protected void tearDown() throws Exception {
        super.tearDown();
    }
     */
    
    public void testXXX() throws Exception {
        fail("XXX");
    }
    
}
