| 41 | }; |
| 42 | |
| 43 | TEST_F(PrintingV2GraphTest, StringSuccess) { |
| 44 | TF_ASSERT_OK(Init()); |
| 45 | AddInputFromArray<tstring>(TensorShape({}), {"bar"}); |
| 46 | TF_ASSERT_OK(RunOpKernel()); |
| 47 | } |
| 48 | |
| 49 | TEST_F(PrintingV2GraphTest, InvalidOutputStream) { |
| 50 | ASSERT_NE(::tensorflow::Status::OK(), (Init("invalid_output_stream"))); |
nothing calls this directly
no test coverage detected