| 155 | }; |
| 156 | |
| 157 | TestAStarBidirectionalAlgo::Result Convert(Algorithm::Result value) |
| 158 | { |
| 159 | switch (value) |
| 160 | { |
| 161 | case Algorithm::Result::OK: return TestAStarBidirectionalAlgo::Result::OK; |
| 162 | case Algorithm::Result::NoPath: return TestAStarBidirectionalAlgo::Result::NoPath; |
| 163 | case Algorithm::Result::Cancelled: return TestAStarBidirectionalAlgo::Result::Cancelled; |
| 164 | } |
| 165 | |
| 166 | UNREACHABLE(); |
| 167 | return TestAStarBidirectionalAlgo::Result::NoPath; |
| 168 | } |
| 169 | } // namespace |
| 170 | |
| 171 | std::string DebugPrint(TestAStarBidirectionalAlgo::Result const & value) |
no outgoing calls
no test coverage detected