| 42 | } |
| 43 | |
| 44 | TEST_CASE(as_value) |
| 45 | { |
| 46 | migraphx::program p1 = create_program(); |
| 47 | migraphx::program p2; |
| 48 | p2.from_value(p1.to_value()); |
| 49 | EXPECT(p1.sort() == p2.sort()); |
| 50 | } |
| 51 | |
| 52 | TEST_CASE(as_msgpack) |
| 53 | { |
nothing calls this directly
no test coverage detected