1
0
mirror of synced 2024-11-30 18:34:29 +01:00
ImHex/tests/source/tests.cpp

25 lines
801 B
C++
Raw Normal View History

2021-09-11 23:13:49 +02:00
#include <array>
#include "test_patterns/test_pattern_placement.hpp"
#include "test_patterns/test_pattern_structs.hpp"
#include "test_patterns/test_pattern_unions.hpp"
#include "test_patterns/test_pattern_enums.hpp"
#include "test_patterns/test_pattern_literals.hpp"
#include "test_patterns/test_pattern_padding.hpp"
#include "test_patterns/test_pattern_succeeding_assert.hpp"
#include "test_patterns/test_pattern_failing_assert.hpp"
2021-09-12 20:28:32 +02:00
#include "test_patterns/test_pattern_bitfields.hpp"
2021-09-12 21:54:18 +02:00
#include "test_patterns/test_pattern_math.hpp"
2021-09-11 23:13:49 +02:00
std::array Tests = {
TEST(Placement),
TEST(Structs),
TEST(Unions),
TEST(Enums),
TEST(Literals),
TEST(Padding),
TEST(SucceedingAssert),
2021-09-12 20:28:32 +02:00
TEST(FailingAssert),
2021-09-12 21:54:18 +02:00
TEST(Bitfields),
TEST(Math)
2021-09-11 23:13:49 +02:00
};