Package edu.stuy.commands

Source Code of edu.stuy.commands.AutonDriveToFenderTest

/*
* 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() {}
}
TOP

Related Classes of edu.stuy.commands.AutonDriveToFenderTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.