File tree Expand file tree Collapse file tree 9 files changed +12
-11
lines changed
test/java/org/frc6423/robot Expand file tree Collapse file tree 9 files changed +12
-11
lines changed Original file line number Diff line number Diff line change 44// Open Source Software; you can modify and/or share it under the terms of
55// MIT license file in the root directory of this project
66
7- package org .frc6423 .lib ;
7+ package org .frc6423 .lib . drivers ;
88
99public class CanDeviceId {
1010 private final String busName ;
Original file line number Diff line number Diff line change 44// Open Source Software; you can modify and/or share it under the terms of
55// MIT license file in the root directory of this project
66
7- package org .frc6423 .lib ;
7+ package org .frc6423 .lib . drivers ;
88
99import edu .wpi .first .wpilibj .TimedRobot ;
1010import edu .wpi .first .wpilibj .Timer ;
1111import edu .wpi .first .wpilibj2 .command .Command ;
1212import edu .wpi .first .wpilibj2 .command .CommandScheduler ;
13+ import org .frc6423 .lib .utilities .Tracer ;
1314
1415/**
1516 * @see https://github.com/wpilibsuite/allwpilib/pull/5939
Original file line number Diff line number Diff line change 44// Open Source Software; you can modify and/or share it under the terms of
55// MIT license file in the root directory of this project
66
7- package org .frc6423 .lib ;
7+ package org .frc6423 .lib . drivers ;
88
99import edu .wpi .first .wpilibj2 .command .SubsystemBase ;
1010import org .frc6423 .monologue .Logged ;
Original file line number Diff line number Diff line change 44// Open Source Software; you can modify and/or share it under the terms of
55// MIT license file in the root directory of this project
66
7- package org .frc6423 .lib ;
7+ package org .frc6423 .lib . types ;
88
99/** Represents a boolean that will have a final value of true once toggled */
1010public class Latch {
Original file line number Diff line number Diff line change 44// Open Source Software; you can modify and/or share it under the terms of
55// MIT license file in the root directory of this project
66
7- package org .frc6423 .lib ;
7+ package org .frc6423 .lib . utilities ;
88
99import edu .wpi .first .hal .AllianceStationID ;
1010import edu .wpi .first .hal .HAL ;
Original file line number Diff line number Diff line change 44// Open Source Software; you can modify and/or share it under the terms of
55// MIT license file in the root directory of this project
66
7- package org .frc6423 .lib ;
7+ package org .frc6423 .lib . utilities ;
88
99import edu .wpi .first .networktables .DoublePublisher ;
1010import edu .wpi .first .networktables .NetworkTable ;
Original file line number Diff line number Diff line change 1010
1111import com .ctre .phoenix6 .CANBus ;
1212import edu .wpi .first .units .measure .Time ;
13- import org .frc6423 .lib .CanDeviceId ;
13+ import org .frc6423 .lib .drivers . CanDeviceId ;
1414
1515/**
1616 * Stores global immutable values called "constants"
Original file line number Diff line number Diff line change 1616import edu .wpi .first .wpilibj .smartdashboard .SmartDashboard ;
1717import edu .wpi .first .wpilibj2 .command .Command ;
1818import edu .wpi .first .wpilibj2 .command .Commands ;
19- import org .frc6423 .lib .CommandRobot ;
20- import org .frc6423 .lib .Tracer ;
19+ import org .frc6423 .lib .drivers . CommandRobot ;
20+ import org .frc6423 .lib .utilities . Tracer ;
2121import org .frc6423 .monologue .Logged ;
2222import org .frc6423 .monologue .Monologue ;
2323import org .frc6423 .monologue .Monologue .MonologueConfig ;
Original file line number Diff line number Diff line change 66
77package org .frc6423 .robot ;
88
9- import static org .frc6423 .lib .TestUtils .reset ;
10- import static org .frc6423 .lib .TestUtils .setupTest ;
9+ import static org .frc6423 .lib .utilities . TestUtils .reset ;
10+ import static org .frc6423 .lib .utilities . TestUtils .setupTest ;
1111
1212import org .junit .jupiter .api .BeforeEach ;
1313
You can’t perform that action at this time.
0 commit comments