| 66 | }; |
| 67 | |
| 68 | TEST_F(ExtractExampleParserConfigurationTest, OpNotFound) { |
| 69 | std::vector<FixedLenFeature> dense_vec; |
| 70 | std::vector<VarLenFeature> sparse_vec; |
| 71 | Status status = ExtractExampleParserConfiguration( |
| 72 | graph_def_, "BlarseExample/ParseExample", session_.get(), &dense_vec, |
| 73 | &sparse_vec); |
| 74 | |
| 75 | EXPECT_EQ(status.code(), error::INVALID_ARGUMENT); |
| 76 | } |
| 77 | |
| 78 | TEST_F(ExtractExampleParserConfigurationTest, InconsistentAttrNsparse) { |
| 79 | std::vector<FixedLenFeature> dense_vec; |
nothing calls this directly
no test coverage detected