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.
|
2018-05-24 20:39:15 -04:00
|
|
|
|
2025-11-07 19:55:43 -05:00
|
|
|
package org.wpilib.system;
|
2018-05-24 20:39:15 -04:00
|
|
|
|
2023-08-18 19:18:33 -07:00
|
|
|
@SuppressWarnings("PMD.TestClassWithoutTestCases")
|
2019-09-03 19:44:24 -07:00
|
|
|
class RobotControllerTest extends UtilityClassTest<RobotController> {
|
2018-06-11 18:01:49 -04:00
|
|
|
RobotControllerTest() {
|
2018-05-24 20:39:15 -04:00
|
|
|
super(RobotController.class);
|
|
|
|
|
}
|
|
|
|
|
}
|