tests: Added properly working custom unit tests

This commit is contained in:
WerWolv
2021-10-14 21:19:31 +02:00
parent 3e5d6cf88c
commit 1b6035d6c6
13 changed files with 156 additions and 26 deletions

View File

@@ -1,5 +1,11 @@
#define CATCH_CONFIG_MAIN
#include <catch2/catch.hpp>
#include <hex/helpers/crypto.hpp>
#include "test_provider.hpp"
#include "tests.hpp"
TEST_SEQUENCE("TestSucceeding") {
TEST_SUCCESS();
};
TEST_SEQUENCE("TestFailing", FAILING) {
TEST_FAIL();
};