| 8 | static const char *DM1_SHA256 = "0b0c481d77519c32fbe85624ef16ec0fa9991aec7367ad538bd280f28d8c26cf"; |
| 9 | |
| 10 | static CMapBugs GetMapBugsImpl(const char *pName, int Size, const char *pSha256) |
| 11 | { |
| 12 | SHA256_DIGEST Sha256 = {{0}}; |
| 13 | dbg_assert(sha256_from_str(&Sha256, pSha256) == 0, "invalid sha256 in tests"); |
| 14 | return CMapBugs::Create(pName, Size, Sha256); |
| 15 | } |
| 16 | |
| 17 | TEST(MapBugs, Contains) |
| 18 | { |
no test coverage detected