| 12 | namespace debug { |
| 13 | |
| 14 | TEST(ProcMapsTest, Empty) { |
| 15 | std::vector<MappedMemoryRegion> regions; |
| 16 | EXPECT_TRUE(ParseProcMaps("", ®ions)); |
| 17 | EXPECT_EQ(0u, regions.size()); |
| 18 | } |
| 19 | |
| 20 | TEST(ProcMapsTest, NoSpaces) { |
| 21 | static const char kNoSpaces[] = |
nothing calls this directly
no test coverage detected