Removed @author from comments (#88)

Keeping @author lines in the comments serves no functional purpose.
This commit is contained in:
Tyler Veness
2016-05-29 09:24:04 -07:00
committed by Peter Johnson
parent 7a402b4170
commit 2f7eff7091
125 changed files with 1 additions and 258 deletions

View File

@@ -20,8 +20,6 @@ import edu.wpi.first.wpilibj.test.TestBench;
/**
* Provides a base implementation for CAN Tests that forces a test of a particular mode to provide
* tests of a certain type. This also allows for a standardized base setup for each test.
*
* @author jonathanleitschuh
*/
public abstract class AbstractCANTest extends AbstractComsSetup {
public static final double kMotorStopTime = 2;
@@ -47,8 +45,6 @@ public abstract class AbstractCANTest extends AbstractComsSetup {
/**
* Extends the default test watcher in order to provide more information about a tests failure at
* runtime.
*
* @author jonathanleitschuh
*/
public class CANTestWatcher extends DefaultTestWatcher {
@Override

View File

@@ -20,8 +20,6 @@ import static org.junit.Assert.assertEquals;
/**
* Tests the CAN Motor Controller in Current Quad Encoder mode.
*
* @author jonathanleitschuh
*/
public class CANCurrentQuadEncoderModeTest extends AbstractCANTest {
private static Logger logger = Logger.getLogger(CANCurrentQuadEncoderModeTest.class.getName());

View File

@@ -28,8 +28,6 @@ import static org.junit.Assert.assertTrue;
/**
* The default test set to run against the CAN Motor Controllers.
*
* @author jonathanleitschuh
*/
public class CANDefaultTest extends AbstractCANTest {
private static final Logger logger = Logger.getLogger(CANDefaultTest.class.getName());

View File

@@ -31,8 +31,6 @@ import static org.junit.Assert.assertTrue;
/**
* Tests the CAN motor in PercentQuadEncoderMode.
*
* @author jonathanleitschuh
*/
@SuppressWarnings("AbbreviationAsWordInName")
public class CANPercentQuadEncoderModeTest extends AbstractCANTest {

View File

@@ -28,8 +28,6 @@ import static org.junit.Assert.assertThat;
/**
* Tests the CAN Motor controller in Potentiometer Mode.
*
* @author jonathanleitschuh
*/
public class CANPositionPotentiometerModeTest extends AbstractCANTest {
private static final Logger logger = Logger.getLogger(CANPositionPotentiometerModeTest.class

View File

@@ -21,8 +21,6 @@ import static org.junit.Assert.assertEquals;
/**
* Tests the CAN Motor Encoders in QuadEncoder mode.
*
* @author jonathanleitschuh
*/
public class CANPositionQuadEncoderModeTest extends AbstractCANTest {
private static final Logger logger = Logger.getLogger(CANPositionQuadEncoderModeTest.class

View File

@@ -23,8 +23,6 @@ import static org.junit.Assert.assertThat;
/**
* Tests the CAN Speed controllers in quad mode.
*
* @author jonathanleitschuh
*/
public class CANSpeedQuadEncoderModeTest extends AbstractCANTest {
private static final Logger logger = Logger.getLogger(CANPercentQuadEncoderModeTest.class

View File

@@ -15,8 +15,6 @@ import edu.wpi.first.wpilibj.test.AbstractTestSuite;
/**
* All of the tests to cover the CAN Motor Controllers.
*
* @author jonathanleitschuh
*/
@RunWith(Suite.class)
@SuiteClasses({CANCurrentQuadEncoderModeTest.class, CANDefaultTest.class,

View File

@@ -27,8 +27,6 @@ import static org.junit.Assert.assertThat;
/**
* Tests the CAN motor controllers in voltage mode work correctly.
*
* @author Jonathan Leitschuh
*/
public class CANVoltageQuadEncoderModeTest extends AbstractCANTest {
private static final Logger logger = Logger.getLogger(CANVoltageQuadEncoderModeTest.class