| 143 | }; |
| 144 | |
| 145 | TEST_F(ImportTest, LoadTensorsTable) { |
| 146 | BuildTestModel(); |
| 147 | |
| 148 | details::TensorsTable tensors; |
| 149 | details::LoadTensorsTable(*input_model_, &tensors); |
| 150 | EXPECT_THAT(tensors, ElementsAre("tensor_one", "tensor_two")); |
| 151 | } |
| 152 | |
| 153 | TEST_F(ImportTest, LoadOperatorsTable) { |
| 154 | BuildTestModel(); |
nothing calls this directly
no test coverage detected