tests: Added operator test

This commit is contained in:
WerWolv
2021-09-12 21:54:18 +02:00
parent bed5361879
commit 7fbb540674
4 changed files with 79 additions and 4 deletions

View File

@@ -9,6 +9,7 @@
#include "test_patterns/test_pattern_succeeding_assert.hpp"
#include "test_patterns/test_pattern_failing_assert.hpp"
#include "test_patterns/test_pattern_bitfields.hpp"
#include "test_patterns/test_pattern_math.hpp"
std::array Tests = {
TEST(Placement),
@@ -19,5 +20,6 @@ std::array Tests = {
TEST(Padding),
TEST(SucceedingAssert),
TEST(FailingAssert),
TEST(Bitfields)
TEST(Bitfields),
TEST(Math)
};