mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-21 01:01:43 +00:00
[wpilibc] Clean up integration tests (#3400)
The command and shuffleboard integration tests were removed because their unit tests counterparts already provide adequate coverage. Java already removed these.
This commit is contained in:
@@ -6,12 +6,10 @@
|
||||
|
||||
#include "frc/smartdashboard/SendableRegistry.h"
|
||||
|
||||
using namespace frc;
|
||||
|
||||
MockActuatorSendable::MockActuatorSendable(wpi::StringRef name) {
|
||||
SendableRegistry::GetInstance().Add(this, name);
|
||||
MockActuatorSendable::MockActuatorSendable(std::string_view name) {
|
||||
frc::SendableRegistry::GetInstance().Add(this, name);
|
||||
}
|
||||
|
||||
void MockActuatorSendable::InitSendable(SendableBuilder& builder) {
|
||||
void MockActuatorSendable::InitSendable(frc::SendableBuilder& builder) {
|
||||
builder.SetActuator(true);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user