test suite for replacementPool

This commit is contained in:
Scott Sadler
2018-03-12 01:57:35 -03:00
parent 346eb4ae25
commit a8acafb354
12 changed files with 603 additions and 71 deletions

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

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