1
0
Fork 0
mirror of https://github.com/eosswedenorg/libantelope synced 2026-06-16 11:44:55 +02:00

tests: Adding doctest framework.

This commit is contained in:
Henrik Hautakoski 2023-03-09 17:40:46 +01:00
parent 35c2c2fe79
commit dbbdc896e1
6 changed files with 7125 additions and 53 deletions

11
tests/main.cpp Normal file
View file

@ -0,0 +1,11 @@
#define DOCTEST_CONFIG_IMPLEMENT
#include <doctest.h>
int main(int argc, char** argv) {
doctest::Context context;
context.applyCommandLine(argc, argv);
return context.run();
}