15 lines
308 B
C++
15 lines
308 B
C++
#include "key.h"
|
|
#include "chainparams.h"
|
|
#include "gtest/gtest.h"
|
|
#include "crypto/common.h"
|
|
|
|
|
|
int main(int argc, char **argv) {
|
|
assert(init_and_check_sodium() != -1);
|
|
ECC_Start();
|
|
SelectParams(CBaseChainParams::REGTEST);
|
|
|
|
testing::InitGoogleTest(&argc, argv);
|
|
return RUN_ALL_TESTS();
|
|
}
|