Remove wpilibj tests from wpilibjIntegrationTests (#1323)

Since the integration tests are still on junit 4, the wpilibj junit 5 tests fail.
This commit is contained in:
Thad House
2018-09-20 21:57:59 -07:00
committed by Peter Johnson
parent 12c92a822d
commit 0068b6aea3
5 changed files with 51 additions and 30 deletions

View File

@@ -0,0 +1,48 @@
/*----------------------------------------------------------------------------*/
/* Copyright (c) 2017-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;
public class MockSpeedController implements SpeedController {
private double m_speed;
private boolean m_isInverted;
@Override
public void set(double speed) {
m_speed = m_isInverted ? -speed : speed;
}
@Override
public double get() {
return m_speed;
}
@Override
public void setInverted(boolean isInverted) {
m_isInverted = isInverted;
}
@Override
public boolean getInverted() {
return m_isInverted;
}
@Override
public void disable() {
m_speed = 0;
}
@Override
public void stopMotor() {
disable();
}
@Override
public void pidWrite(double output) {
set(output);
}
}