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:
parent
35c2c2fe79
commit
dbbdc896e1
6 changed files with 7125 additions and 53 deletions
11
tests/main.cpp
Normal file
11
tests/main.cpp
Normal 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();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue