mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +00:00
30 lines
1.4 KiB
Java
30 lines
1.4 KiB
Java
/*----------------------------------------------------------------------------*/
|
|
/* Copyright (c) 2008-2018 FIRST. All Rights Reserved. */
|
|
/* Open Source Software - may be modified and shared by FRC teams. The code */
|
|
/* must be accompanied by the FIRST BSD license file in the root directory of */
|
|
/* the project. */
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
package edu.wpi.first.wpilibj;
|
|
|
|
import org.junit.runner.RunWith;
|
|
import org.junit.runners.Suite;
|
|
import org.junit.runners.Suite.SuiteClasses;
|
|
|
|
import edu.wpi.first.wpilibj.test.AbstractTestSuite;
|
|
|
|
/**
|
|
* 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.
|
|
*/
|
|
@RunWith(Suite.class)
|
|
@SuiteClasses({AnalogCrossConnectTest.class, AnalogPotentiometerTest.class,
|
|
BuiltInAccelerometerTest.class, ConstantsPortsTest.class, CounterTest.class,
|
|
DigitalGlitchFilterTest.class, DIOCrossConnectTest.class, DriverStationTest.class,
|
|
EncoderTest.class, FilterNoiseTest.class, FilterOutputTest.class, GyroTest.class,
|
|
MotorEncoderTest.class, MotorInvertingTest.class, PCMTest.class, PDPTest.class,
|
|
PIDTest.class, PreferencesTest.class, RelayCrossConnectTest.class,
|
|
RobotDriveTest.class, SampleTest.class, TimerTest.class})
|
|
public class WpiLibJTestSuite extends AbstractTestSuite {
|
|
}
|