| 23 | namespace tensorflow { |
| 24 | |
| 25 | TEST(ParsingOpsTest, DecodeRaw_ShapeFn) { |
| 26 | ShapeInferenceTestOp op("DecodeRaw"); |
| 27 | |
| 28 | // Output is input + an unknown dim. |
| 29 | INFER_OK(op, "?", "?"); |
| 30 | INFER_OK(op, "[?,?,?]", "[d0_0,d0_1,d0_2,?]"); |
| 31 | } |
| 32 | |
| 33 | TEST(ParsingOpsTest, DecodeCSV_ShapeFn) { |
| 34 | ShapeInferenceTestOp op("DecodeCSV"); |
nothing calls this directly
no test coverage detected