Road Runner Validation Tests
Use straight, turn, and spline tests to verify readiness.
Use straight, turn, and spline tests to verify readiness.
In this lesson, you will:
Validation proves the robot model is good enough for autonomous planning. It should happen before students spend hours designing paths.
Simple tests isolate basic behavior. A spline test is meaningful only after straight motion, turning, and localization are already believable.
Run short line tests, turn tests, repeated back-and-forth tests, then SplineTest. Log errors and decide whether to retune or redesign.
ValidationChecklist.javaJava
// 1. short line
// 2. turn in place
// 3. repeat forward/back
// 4. spline validation
telemetry.addLine("Record result before changing constants");If spline fails but straight and turn tests pass, inspect path constraints and localization. If straight fails, return to tuning rather than editing path shape.
Run a validation sequence and classify each failure as tuning, localization, or path design.
Check your understanding before moving on.
0 of 2 answered