tests: Added bitfield test

This commit is contained in:
WerWolv
2021-09-12 20:28:32 +02:00
parent 82cc528c49
commit bed5361879
10 changed files with 69 additions and 23 deletions

View File

@@ -8,6 +8,7 @@
#include "test_patterns/test_pattern_padding.hpp"
#include "test_patterns/test_pattern_succeeding_assert.hpp"
#include "test_patterns/test_pattern_failing_assert.hpp"
#include "test_patterns/test_pattern_bitfields.hpp"
std::array Tests = {
TEST(Placement),
@@ -17,5 +18,6 @@ std::array Tests = {
TEST(Literals),
TEST(Padding),
TEST(SucceedingAssert),
TEST(FailingAssert)
TEST(FailingAssert),
TEST(Bitfields)
};