cpp test suite for cryptoconditions integration

This commit is contained in:
Scott Sadler
2018-04-01 21:18:01 -03:00
parent 563581aff4
commit 4c121ffdb0
19 changed files with 336 additions and 465 deletions

12
src/test-komodo/main.cpp Normal file
View File

@@ -0,0 +1,12 @@
#include "key.h"
#include "gtest/gtest.h"
#include "crypto/common.h"
int main(int argc, char **argv) {
assert(init_and_check_sodium() != -1);
ECC_Start();
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}