| 51 | }; |
| 52 | |
| 53 | TEST_F(ShapeTreeTest, DefaultConstructor) { |
| 54 | ShapeTree<int> int_tree; |
| 55 | EXPECT_TRUE(ShapeUtil::IsEmptyTuple(int_tree.shape())); |
| 56 | |
| 57 | ShapeTree<bool> bool_tree; |
| 58 | EXPECT_TRUE(ShapeUtil::IsEmptyTuple(bool_tree.shape())); |
| 59 | } |
| 60 | |
| 61 | void ShapeTreeTest::TestShapeConstructor(const Shape& shape, |
| 62 | int expected_num_nodes) { |
nothing calls this directly
no test coverage detected