| 15 | } |
| 16 | |
| 17 | TEST(MapBugs, Contains) |
| 18 | { |
| 19 | EXPECT_TRUE(GetMapBugsImpl("Binary", 2022597, BINARY_SHA256).Contains(BUG_GRENADE_DOUBLEEXPLOSION)); |
| 20 | EXPECT_FALSE(GetMapBugsImpl("Binarx", 2022597, BINARY_SHA256).Contains(BUG_GRENADE_DOUBLEEXPLOSION)); |
| 21 | EXPECT_FALSE(GetMapBugsImpl("Binary", 2022598, BINARY_SHA256).Contains(BUG_GRENADE_DOUBLEEXPLOSION)); |
| 22 | EXPECT_FALSE(GetMapBugsImpl("dm1", 5805, DM1_SHA256).Contains(BUG_GRENADE_DOUBLEEXPLOSION)); |
| 23 | } |
| 24 | |
| 25 | TEST(MapBugs, Update) |
| 26 | { |
nothing calls this directly
no test coverage detected