tests: Added RValue, Namespaces and extra semicolon test

This commit is contained in:
WerWolv
2021-09-13 10:49:24 +02:00
parent 01670e5e85
commit 22a904baf4
6 changed files with 134 additions and 4 deletions

View File

@@ -10,6 +10,9 @@
#include "test_patterns/test_pattern_failing_assert.hpp"
#include "test_patterns/test_pattern_bitfields.hpp"
#include "test_patterns/test_pattern_math.hpp"
#include "test_patterns/test_pattern_rvalues.hpp"
#include "test_patterns/test_pattern_namespaces.hpp"
#include "test_patterns/test_pattern_extra_semicolon.hpp"
std::array Tests = {
TEST(Placement),
@@ -21,5 +24,8 @@ std::array Tests = {
TEST(SucceedingAssert),
TEST(FailingAssert),
TEST(Bitfields),
TEST(Math)
TEST(Math),
TEST(RValues),
TEST(Namespaces),
TEST(ExtraSemicolon)
};