mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-28 02:11:43 +00:00
Removed @author from comments (#88)
Keeping @author lines in the comments serves no functional purpose.
This commit is contained in:
committed by
Peter Johnson
parent
7a402b4170
commit
2f7eff7091
@@ -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() {
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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 {
|
||||
|
||||
|
||||
@@ -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 {
|
||||
|
||||
|
||||
@@ -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());
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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 {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user