Test default construction
| 28 | |
| 29 | // Test default construction |
| 30 | TEST_CASE(array_default_construction) |
| 31 | { |
| 32 | migraphx::array<int, 5> arr; |
| 33 | EXPECT(arr.size() == 5); |
| 34 | EXPECT(arr.data() != nullptr); |
| 35 | EXPECT(not arr.empty()); |
| 36 | } |
| 37 | |
| 38 | // Test variadic constructor |
| 39 | TEST_CASE(array_variadic_constructor) |
nothing calls this directly
no test coverage detected