| 40 | { |
| 41 | |
| 42 | TEST(DomainBounds, parse_empty) |
| 43 | { |
| 44 | std::stringstream ss("()"); |
| 45 | DomainBounds bounds; |
| 46 | ss >> bounds; |
| 47 | |
| 48 | EXPECT_TRUE(bounds.empty()); |
| 49 | EXPECT_EQ(bounds.ndim(), 0); |
| 50 | } |
| 51 | |
| 52 | TEST(DomainBounds, parse_bbox1d) |
| 53 | { |
nothing calls this directly
no test coverage detected