| 26 | #include "test.hpp" |
| 27 | |
| 28 | TEST_CASE(make_target) |
| 29 | { |
| 30 | for(const auto& name : migraphx::get_targets()) |
| 31 | { |
| 32 | auto t = migraphx::make_target(name); |
| 33 | CHECK(t.name() == name); |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | TEST_CASE(make_invalid_target) |
| 38 | { |
nothing calls this directly
no test coverage detected