tests: Added pointer test

This commit is contained in:
WerWolv
2021-09-25 23:31:37 +02:00
parent b323d711cf
commit 62656f4c51
6 changed files with 44 additions and 9 deletions

View File

@@ -13,6 +13,7 @@
#include "test_patterns/test_pattern_rvalues.hpp"
#include "test_patterns/test_pattern_namespaces.hpp"
#include "test_patterns/test_pattern_extra_semicolon.hpp"
#include "test_patterns/test_pattern_pointers.hpp"
std::array Tests = {
TEST(Placement),
@@ -27,5 +28,6 @@ std::array Tests = {
TEST(Math),
TEST(RValues),
TEST(Namespaces),
TEST(ExtraSemicolon)
TEST(ExtraSemicolon),
TEST(Pointers)
};