| 24 | namespace { |
| 25 | |
| 26 | TEST(PartialTensorShapeTest, Default) { |
| 27 | // The default PartialTensorShape constructor constructs a shape |
| 28 | // with unknown rank. |
| 29 | const PartialTensorShape s; |
| 30 | EXPECT_EQ(s.dims(), -1); |
| 31 | EXPECT_TRUE(s.unknown_rank()); |
| 32 | } |
| 33 | |
| 34 | TEST(PartialTensorShapeTest, Concatenate) { |
| 35 | const PartialTensorShape s({10, 5}); |
nothing calls this directly
no test coverage detected