10 lines
199 B
C++
10 lines
199 B
C++
#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();
|
|
}
|