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

@@ -27,9 +27,6 @@ import edu.wpi.first.wpilibj.livewindow.LiveWindow;
* an {@link BeforeClass} statement to initialize network communications. Any test that needs to use
* the hardware <b>MUST</b> extend from this class, to ensure that all of the hardware will be able
* to run.
*
* @author Fredric Silberberg
* @author Jonathan Leitschuh
*/
public abstract class AbstractComsSetup {
/**
@@ -185,8 +182,6 @@ public abstract class AbstractComsSetup {
/**
* Provided as a replacement to lambda functions to allow for repeatable checks to see if a
* correct state is reached.
*
* @author Jonathan Leitschuh
*/
public abstract class BooleanCheck {
public BooleanCheck() {

View File

@@ -22,8 +22,6 @@ import java.util.regex.Pattern;
/**
* Allows tests suites and tests to be run selectively from the command line using a regex text
* pattern.
*
* @author jonathanleitschuh
*/
public abstract class AbstractTestSuite {
private static final Logger logger = Logger.getLogger(AbstractTestSuite.class.getName());
@@ -63,8 +61,6 @@ public abstract class AbstractTestSuite {
/**
* Stores a method name and method class pair. Used when searching for methods matching a given
* regex text.
*
* @author jonathanleitschuh
*/
protected class ClassMethodPair {
public final Class<?> m_methodClass;

View File

@@ -27,8 +27,6 @@ import static org.junit.Assert.assertEquals;
/**
* Yes, this is the test system testing itself. Functionally, this is making sure that all tests get
* run correctly when you use parametrized arguments.
*
* @author jonathanleitschuh
*/
public class AbstractTestSuiteTest {

View File

@@ -19,8 +19,6 @@ import java.io.File;
/**
* Provides an entry point for tests to run with ANT. This allows ant to output JUnit XML test
* results for Jenkins.
*
* @author jonathanleitschuh
*/
public class AntJunitLanucher {

View File

@@ -16,8 +16,6 @@ import java.util.logging.Logger;
* framework. This test is NOT run as a normal part of the testing process and must be explicitly
* selected at runtime by using the 'quick' argument. This test should never be committed with
* changes to it but can be used during development to aid in feature testing.
*
* @author Jonathan Leitschuh
*/
public class QuickTest extends AbstractComsSetup {
private static final Logger logger = Logger.getLogger(QuickTest.class.getName());

View File

@@ -23,8 +23,6 @@ import java.lang.annotation.Target;
* <p>This code was originally found here:
* <a href="http://www.codeaffine.com/2013/04/10/running-junit-tests-repeatedly-without-loops/">
* Running JUnit Tests Repeatedly Without Loops</a>
*
* @author Frank Appel
*/
public class RepeatRule implements TestRule {
@Retention(RetentionPolicy.RUNTIME)

View File

@@ -40,10 +40,6 @@ import edu.wpi.first.wpilibj.mockhardware.FakePotentiometerSource;
* This class provides access to all of the elements on the test bench, for use in fixtures. This
* class is a singleton, you should use {@link #getInstance()} to obtain a reference to the {@code
* TestBench}.
*
* <p>TODO: This needs to be updated to the most recent test bench setup.
*
* @author Fredric Silberberg
*/
public final class TestBench {