| 34 | #include "test.hpp" |
| 35 | |
| 36 | TEST_CASE(test_shape_default) |
| 37 | { |
| 38 | migraphx::shape s{}; |
| 39 | EXPECT(s.elements() == 0); |
| 40 | EXPECT(s.bytes() == 0); |
| 41 | } |
| 42 | |
| 43 | TEST_CASE(test_dyn_4arg_constructor) |
| 44 | { |
nothing calls this directly
no test coverage detected