ハイドラント
ハイドラント
`CommandPtr` also doesn't have `.addRequirements()` necessary for `AddRequirementsTest`.
I think everything on the checklist is done now.
> (Though I am still iffy about using the factories in tests of the command classes themselves) I feel like it should be fine? The actual code logic is entirely...
> * `CompositionTestBase`: `cmd::WaitUntil([] { return false; })` -> `cmd::Idle()` > > * `ConditionalCommandTest.AllCancelSelf`: `cmd::WaitUntil([] { return false; })` Done those 2.
```java @RobotsManager public class RobotsManager { private final Robot oldRobot; private final Robot newRobot; public RobotsManager() { this.oldRobot = new OldRobot(); this.newRobot = new NewRobot(); } } ``` Wouldn't this...
I think the closest analogy to what current FRC/the design doc's `Robot` class does is current FTC's hardware map, where it's hardware specific and configures the hardware for op modes/commands...