| 1758 | }; |
| 1759 | |
| 1760 | TEST_F(HloParserTest, Empty) { |
| 1761 | const string original = ""; |
| 1762 | auto result = ParseAndReturnUnverifiedModule(original); |
| 1763 | EXPECT_NE(Status::OK(), result.status()); |
| 1764 | } |
| 1765 | |
| 1766 | TEST_F(HloParserTest, Garbage) { |
| 1767 | const string original = "HloModule thi$ str1ng makes# N0 sen$e @all!*&^%$"; |
nothing calls this directly
no test coverage detected