| 25 | #include <src/gcode/parser.h> |
| 26 | |
| 27 | MARLIN_TEST(gcode, process_parsed_command) { |
| 28 | GcodeSuite suite; |
| 29 | parser.command_letter = 'G'; |
| 30 | parser.codenum = 0; |
| 31 | suite.process_parsed_command(false); |
| 32 | } |
| 33 | |
| 34 | MARLIN_TEST(gcode, parse_g1_xz) { |
| 35 | char current_command[] = "G0 X10 Z30"; |
nothing calls this directly
no test coverage detected