/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package edu.stuy.commands;
import edu.stuy.InitTests;
import edu.stuy.JoeBot;
import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
/**
*
* @author admin
*/
public class AutonDriveToFenderTest {
@BeforeClass
public static void setUpClass() throws Exception {
InitTests.setUpTests();
JoeBot j = new JoeBot();
j.robotInit();
}
@AfterClass
public static void tearDownClass() throws Exception {
InitTests.tearDownTests();
}
@Before
public void setUp() {
}
@After
public void tearDown() {
}
// TODO add test methods here.
// The methods must be annotated with annotation @Test. For example:
//
// @Test
// public void hello() {}
}