diff options
Diffstat (limited to 'src/zencore')
| -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 |