2020-12-26 14:12:05 -08:00
|
|
|
// Copyright (c) FIRST and other WPILib contributors.
|
|
|
|
|
// Open Source Software; you can modify and/or share it under the terms of
|
|
|
|
|
// the WPILib BSD license file in the root directory of this project.
|
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,
|
2018-09-20 21:57:59 -07:00
|
|
|
BuiltInAccelerometerTest.class, ConstantsPortsTest.class, CounterTest.class,
|
2019-08-20 21:05:38 -07:00
|
|
|
DigitalGlitchFilterTest.class, DIOCrossConnectTest.class,
|
2019-06-28 13:35:57 -07:00
|
|
|
DriverStationTest.class, EncoderTest.class, GyroTest.class, MotorEncoderTest.class,
|
2019-07-16 01:02:52 -04:00
|
|
|
MotorInvertingTest.class, PCMTest.class, PDPTest.class, PIDTest.class,
|
2019-06-28 13:35:57 -07:00
|
|
|
RelayCrossConnectTest.class, 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
|
|
|
}
|