2014-06-17 11:10:45 -04:00
|
|
|
/*----------------------------------------------------------------------------*/
|
2016-01-02 03:02:34 -08:00
|
|
|
/* Copyright (c) FIRST 2008-2016. All Rights Reserved. */
|
|
|
|
|
/* Open Source Software - may be modified and shared by FRC teams. The code */
|
2014-06-17 11:10:45 -04:00
|
|
|
/* must be accompanied by the FIRST BSD license file in the root directory of */
|
2016-01-02 03:02:34 -08:00
|
|
|
/* the project. */
|
2014-06-17 11:10:45 -04:00
|
|
|
/*----------------------------------------------------------------------------*/
|
2016-01-02 03:02:34 -08:00
|
|
|
|
2014-06-17 11:10:45 -04:00
|
|
|
package edu.wpi.first.wpilibj;
|
|
|
|
|
|
|
|
|
|
import org.junit.runner.RunWith;
|
|
|
|
|
import org.junit.runners.Suite;
|
|
|
|
|
import org.junit.runners.Suite.SuiteClasses;
|
|
|
|
|
|
2014-07-23 10:43:42 -04:00
|
|
|
import edu.wpi.first.wpilibj.test.AbstractTestSuite;
|
|
|
|
|
|
2014-06-17 11:10:45 -04:00
|
|
|
/**
|
2016-05-20 12:07:40 -04:00
|
|
|
* Holds all of the tests in the root wpilibj directory. Please list alphabetically so that it is
|
|
|
|
|
* easy to determine if a test is missing from the list.
|
2014-06-17 11:10:45 -04:00
|
|
|
*/
|
|
|
|
|
@RunWith(Suite.class)
|
2015-06-25 15:07:55 -04:00
|
|
|
@SuiteClasses({AnalogCrossConnectTest.class, AnalogPotentiometerTest.class,
|
2016-10-13 21:50:20 -04:00
|
|
|
BuiltInAccelerometerTest.class,
|
2016-07-10 08:33:27 -07:00
|
|
|
CircularBufferTest.class, ConstantsPortsTest.class, CounterTest.class,
|
2016-10-06 11:18:47 -07:00
|
|
|
DigitalGlitchFilterTest.class, DIOCrossConnectTest.class, DriverStationTest.class,
|
|
|
|
|
EncoderTest.class, FilterNoiseTest.class, FilterOutputTest.class, GyroTest.class,
|
|
|
|
|
MotorEncoderTest.class, MotorInvertingTest.class, PCMTest.class, PDPTest.class,
|
|
|
|
|
PIDTest.class, PIDToleranceTest.class, PreferencesTest.class, RelayCrossConnectTest.class,
|
2016-01-28 14:25:39 -05:00
|
|
|
SampleTest.class, TimerTest.class})
|
2014-07-23 10:43:42 -04:00
|
|
|
public class WpiLibJTestSuite extends AbstractTestSuite {
|
2014-06-17 11:10:45 -04:00
|
|
|
}
|