mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-21 01:01: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
@@ -16,8 +16,6 @@ import static org.junit.Assert.fail;
|
||||
|
||||
/**
|
||||
* The basic test for all {@link Command} tests.
|
||||
*
|
||||
* @author jonathanleitschuh
|
||||
*/
|
||||
public abstract class AbstractCommandTest {
|
||||
|
||||
|
||||
@@ -16,9 +16,6 @@ import edu.wpi.first.wpilibj.buttons.InternalButton;
|
||||
/**
|
||||
* Test that covers the {@link edu.wpi.first.wpilibj.buttons.Button} with the {@link Command}
|
||||
* library.
|
||||
*
|
||||
* @author Mitchell
|
||||
* @author jonathanleitschuh
|
||||
*/
|
||||
public class ButtonTest extends AbstractCommandTest {
|
||||
private InternalButton m_button1;
|
||||
|
||||
@@ -11,9 +11,6 @@ import org.junit.Test;
|
||||
|
||||
/**
|
||||
* Ported from the old CrioTest Classes.
|
||||
*
|
||||
* @author Mitchell
|
||||
* @author Jonathan Leitschuh
|
||||
*/
|
||||
public class CommandParallelGroupTest extends AbstractCommandTest {
|
||||
|
||||
|
||||
@@ -11,9 +11,6 @@ import org.junit.Test;
|
||||
|
||||
/**
|
||||
* Ported from the old CrioTest Classes.
|
||||
*
|
||||
* @author Mitchell
|
||||
* @author Jonathan Leitschuh
|
||||
*/
|
||||
public class CommandScheduleTest extends AbstractCommandTest {
|
||||
|
||||
|
||||
@@ -13,9 +13,6 @@ import java.util.logging.Logger;
|
||||
|
||||
/**
|
||||
* Ported from the old CrioTest Classes.
|
||||
*
|
||||
* @author Mitchell
|
||||
* @author Jonathan Leitschuh
|
||||
*/
|
||||
public class CommandSequentialGroupTest extends AbstractCommandTest {
|
||||
private static Logger logger = Logger.getLogger(CommandSequentialGroupTest.class.getName());
|
||||
|
||||
@@ -13,9 +13,6 @@ import java.util.logging.Logger;
|
||||
|
||||
/**
|
||||
* Ported from the old CrioTest Classes.
|
||||
*
|
||||
* @author Mitchell
|
||||
* @author Jonathan Leitschuh
|
||||
*/
|
||||
public class CommandSupersedeTest extends AbstractCommandTest {
|
||||
private static final Logger logger = Logger.getLogger(CommandSupersedeTest.class.getName());
|
||||
|
||||
@@ -11,9 +11,6 @@ import org.junit.Test;
|
||||
|
||||
/**
|
||||
* Test a {@link Command} that times out.
|
||||
*
|
||||
* @author jonathanleitschuh
|
||||
*
|
||||
*/
|
||||
public class CommandTimeoutTest extends AbstractCommandTest {
|
||||
|
||||
|
||||
@@ -11,8 +11,6 @@ import org.junit.Test;
|
||||
|
||||
/**
|
||||
* Tests the {@link Command} library.
|
||||
*
|
||||
* @author jonathanleitschuh
|
||||
*/
|
||||
public class DefaultCommandTest extends AbstractCommandTest {
|
||||
|
||||
|
||||
@@ -10,8 +10,6 @@ package edu.wpi.first.wpilibj.command;
|
||||
/**
|
||||
* A class to simulate a simple command The command keeps track of how many times each method was
|
||||
* called.
|
||||
*
|
||||
* @author mwills
|
||||
*/
|
||||
public class MockCommand extends Command {
|
||||
private int m_initializeCount = 0;
|
||||
|
||||
Reference in New Issue
Block a user