Basic swerve stuff

Also separated arcade from swerve everywhere in the code.
This commit is contained in:
aarav18
2021-11-15 17:52:28 -07:00
parent 0bc2442ec1
commit a3d2b5f029
8 changed files with 58 additions and 36 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ public class CommandTest {
@Test
public void testExample() {
// Arrange
Drive drive = mock(Drive.class);
ArcadeDrive drive = mock(ArcadeDrive.class);
RunCommand command = new RunCommand(() -> drive.driveWithInput(0, 0), drive);
// Act