diff options
| author | Gavin Andresen <[email protected]> | 2011-06-27 13:30:44 -0700 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2011-06-27 13:30:44 -0700 |
| commit | 8111e27905deda5c5415ed6b3c30ca944590a378 (patch) | |
| tree | 5ccf717439043d3e7d2fbe8980f5070021349197 /src/test/test_bitcoin.cpp | |
| parent | Merge pull request #347 from sipa/delkeyuser (diff) | |
| parent | Boost unit-testing framework. (diff) | |
| download | discoin-8111e27905deda5c5415ed6b3c30ca944590a378.tar.xz discoin-8111e27905deda5c5415ed6b3c30ca944590a378.zip | |
Merge pull request #356 from gavinandresen/unitTest
Boost unit-testing framework. Thanks to Steve (gasteve in irc) for original code.
Diffstat (limited to 'src/test/test_bitcoin.cpp')
| -rw-r--r-- | src/test/test_bitcoin.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/test/test_bitcoin.cpp b/src/test/test_bitcoin.cpp new file mode 100644 index 000000000..3b7d2d2f2 --- /dev/null +++ b/src/test/test_bitcoin.cpp @@ -0,0 +1,6 @@ +#define BOOST_TEST_MODULE uint160 +#include <boost/test/unit_test.hpp> + +#include "uint160_tests.cpp" +#include "uint256_tests.cpp" + |