Add a zcash-gtest binary to our build with a single tautological test.

This commit is contained in:
Nathan Wilcox
2016-04-18 11:14:30 -07:00
parent 0ee1d5d133
commit 3ab0c1a790
5 changed files with 26 additions and 0 deletions

6
src/gtest/main.cpp Normal file
View File

@@ -0,0 +1,6 @@
#include "gtest/gtest.h"
int main(int argc, char **argv) {
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}