Add empty merkle/noteencryption tests so Sean can rebase.

This commit is contained in:
Taylor Hornby 2016-04-28 10:04:24 -06:00
parent 3098bab6d6
commit 0000d23121
3 changed files with 13 additions and 1 deletions

View File

@ -4,7 +4,9 @@ bin_PROGRAMS += zcash-gtest
zcash_gtest_SOURCES = \
gtest/main.cpp \
gtest/test_tautology.cpp \
gtest/test_checktransaction.cpp
gtest/test_checktransaction.cpp \
gtest/test_noteencryption.cpp \
gtest/test_merkletree.cpp
zcash_gtest_LDADD = -lgtest $(LIBBITCOIN_SERVER) $(LIBBITCOIN_CLI) $(LIBBITCOIN_COMMON) $(LIBBITCOIN_UTIL) $(LIBBITCOIN_CRYPTO) $(LIBBITCOIN_UNIVALUE) $(LIBLEVELDB) $(LIBMEMENV) \
$(BOOST_LIBS) $(BOOST_UNIT_TEST_FRAMEWORK_LIB) $(LIBSECP256K1)

View File

@ -0,0 +1,5 @@
#include <gtest/gtest.h>
TEST(tautologies, eight_eq_eight) {
ASSERT_EQ(8, 8);
}

View File

@ -0,0 +1,5 @@
#include <gtest/gtest.h>
TEST(tautologies, nine_eq_nine) {
ASSERT_EQ(9, 9);
}