| 59 | }; |
| 60 | |
| 61 | TEST_F(DebugIdentityOpTest, Int32Success_6) { |
| 62 | TF_ASSERT_OK(Init(DT_INT32)); |
| 63 | AddInputFromArray<int32>(TensorShape({6}), {1, 2, 3, 4, 5, 6}); |
| 64 | TF_ASSERT_OK(RunOpKernel()); |
| 65 | Tensor expected(allocator(), DT_INT32, TensorShape({6})); |
| 66 | test::FillValues<int32>(&expected, {1, 2, 3, 4, 5, 6}); |
| 67 | // Verify the identity output |
| 68 | test::ExpectTensorEqual<int32>(expected, *GetOutput(0)); |
| 69 | } |
| 70 | |
| 71 | TEST_F(DebugIdentityOpTest, Int32Success_6_FileURLs) { |
| 72 | const int kNumDumpDirs = 3; |
nothing calls this directly
no test coverage detected