| 58 | void TestUnitCommand::IssueUnitCommand(ActionInterface*) {} |
| 59 | |
| 60 | Point2D TestUnitCommand::GetPointOffsetX(Point2D starting_point, float offset) { |
| 61 | Point2D offset_point = starting_point; |
| 62 | offset_point.x = starting_point.x + offset; |
| 63 | return offset_point; |
| 64 | } |
| 65 | |
| 66 | std::vector<Tag> TestUnitCommand::GetTagListFromUnits(Units units) { |
| 67 | std::vector<Tag> tags; |
nothing calls this directly
no outgoing calls
no test coverage detected