| 110 | |
| 111 | #ifdef GTEST_HAS_DEATH_TEST |
| 112 | TEST(SpaceToBatchNDOpTest, InvalidShapeTest) { |
| 113 | EXPECT_DEATH( |
| 114 | SpaceToBatchNDOpConstModel({TensorType_FLOAT32, {1, 3, 3, 1}}, {2, 2}, |
| 115 | {0, 0, 0, 0}, {TensorType_FLOAT32}), |
| 116 | "Cannot allocate tensors"); |
| 117 | } |
| 118 | #endif |
| 119 | |
| 120 | TEST(SpaceToBatchNDOpTest, SimpleConstTest) { |
nothing calls this directly
no test coverage detected