Package edu.stuy

Source Code of edu.stuy.JoeBotTest

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/

package edu.stuy;

import edu.stuy.JoeBot;
import edu.stuy.InitTests;
import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import static org.junit.Assert.*;

/**
*
* @author 694
*/
public class JoeBotTest {

    public JoeBotTest() {
    }

    @BeforeClass
    public static void setUpClass() throws Exception {
        InitTests.setUpTests(InitTests.NO_PHYSICS);
    }

    @AfterClass
    public static void tearDownClass() throws Exception {
        InitTests.tearDownTests();
    }

    @Before
    public void setUp() {
    }

    @After
    public void tearDown() {
    }

    @Test
    public void testNoConveyorOnStartup() {
        JoeBot theRobot = new JoeBot();
        theRobot.robotInit();

    }

}
TOP

Related Classes of edu.stuy.JoeBotTest

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.