| 52 | |
| 53 | #ifdef GTEST_HAS_DEATH_TEST |
| 54 | TEST(DepthToSpaceOpModel, BadBlockSize) { |
| 55 | EXPECT_DEATH(DepthToSpaceOpModel({TensorType_FLOAT32, {1, 1, 1, 4}}, 4), |
| 56 | "Cannot allocate tensors"); |
| 57 | } |
| 58 | #endif |
| 59 | |
| 60 | TEST(DepthToSpaceOpModel, Float32) { |
nothing calls this directly
no test coverage detected