InitGoogleMock instead of InitGoogleTest per CR
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
#include "gtest/gtest.h"
|
#include "gmock/gmock.h"
|
||||||
#include "crypto/common.h"
|
#include "crypto/common.h"
|
||||||
#include "pubkey.h"
|
#include "pubkey.h"
|
||||||
#include "zcash/JoinSplit.hpp"
|
#include "zcash/JoinSplit.hpp"
|
||||||
@@ -25,6 +25,6 @@ int main(int argc, char **argv) {
|
|||||||
boost::filesystem::path vk_path = ZC_GetParamsDir() / "sprout-verifying.key";
|
boost::filesystem::path vk_path = ZC_GetParamsDir() / "sprout-verifying.key";
|
||||||
params = ZCJoinSplit::Prepared(vk_path.string(), pk_path.string());
|
params = ZCJoinSplit::Prepared(vk_path.string(), pk_path.string());
|
||||||
|
|
||||||
testing::InitGoogleTest(&argc, argv);
|
testing::InitGoogleMock(&argc, argv);
|
||||||
return RUN_ALL_TESTS();
|
return RUN_ALL_TESTS();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user