| 1677 | } |
| 1678 | |
| 1679 | static void ValidateAllocationsData(const AllocInfo* allocs, size_t allocCount) |
| 1680 | { |
| 1681 | std::for_each(allocs, allocs + allocCount, [](const AllocInfo& allocInfo) { |
| 1682 | ValidateAllocationData(allocInfo); |
| 1683 | }); |
| 1684 | } |
| 1685 | |
| 1686 | |
| 1687 | static void TestJson() |
no test coverage detected