| 56 | getTypeName); |
| 57 | |
| 58 | TEST_P(ArrayIOType, ReadType) { |
| 59 | type_params p = GetParam(); |
| 60 | if (noDoubleTests(p.type)) GTEST_SKIP() << "No double support."; |
| 61 | array arr = |
| 62 | readArray((string(TEST_DIR) + "/arrayio/" + p.name + ".arr").c_str(), |
| 63 | p.name.c_str()); |
| 64 | |
| 65 | ASSERT_EQ(arr.type(), p.type); |
| 66 | } |
| 67 | |
| 68 | TEST_P(ArrayIOType, ReadSize) { |
| 69 | type_params p = GetParam(); |
nothing calls this directly
no test coverage detected