diff options
| author | Dan Engelbrecht <[email protected]> | 2024-02-27 10:18:02 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-02-27 10:18:02 +0100 |
| commit | b155d303757766044c383d2d957a04c08b12bf64 (patch) | |
| tree | 11403dedb4a0e5e55352745c84574b197d1b494f /src/zencore/include | |
| parent | remove reference caching (#658) (diff) | |
| download | zen-b155d303757766044c383d2d957a04c08b12bf64.tar.xz zen-b155d303757766044c383d2d957a04c08b12bf64.zip | |
improved block store logging and more gcv2 tests (#659)
* improved gc/blockstore logging
* more gcv2 tests
Diffstat (limited to 'src/zencore/include')
| -rw-r--r-- | src/zencore/include/zencore/testutils.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/zencore/include/zencore/testutils.h b/src/zencore/include/zencore/testutils.h index f5526945a..215fb71a8 100644 --- a/src/zencore/include/zencore/testutils.h +++ b/src/zencore/include/zencore/testutils.h @@ -34,6 +34,15 @@ struct ScopedCurrentDirectoryChange IoBuffer CreateRandomBlob(uint64_t Size); +struct FalseType +{ + static const bool Enabled = false; +}; +struct TrueType +{ + static const bool Enabled = true; +}; + } // namespace zen #endif // ZEN_WITH_TESTS |