diff options
| author | Gavin Andresen <[email protected]> | 2011-06-27 14:05:02 -0400 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2011-06-27 14:12:48 -0400 |
| commit | 8baf865c94653e21d4f6f43bbb5c712b16aba0e4 (patch) | |
| tree | 406fea14ada1518e4d4122d4785deb7165f0e290 /src/test/uint256_tests.cpp | |
| parent | Merge branch 'totalblocksestimate1' of https://github.com/laanwj/bitcoin (diff) | |
| download | discoin-8baf865c94653e21d4f6f43bbb5c712b16aba0e4.tar.xz discoin-8baf865c94653e21d4f6f43bbb5c712b16aba0e4.zip | |
Boost unit-testing framework.
make -f makefile.{unix,osx,mingw} test_bitcoin
to compile dumb, do-almost-nothing placeholder unit tests.
Diffstat (limited to 'src/test/uint256_tests.cpp')
| -rw-r--r-- | src/test/uint256_tests.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/test/uint256_tests.cpp b/src/test/uint256_tests.cpp new file mode 100644 index 000000000..cbae9bf6d --- /dev/null +++ b/src/test/uint256_tests.cpp @@ -0,0 +1,16 @@ +#include "../uint256.h" + +BOOST_AUTO_TEST_SUITE(uint256_tests) + +BOOST_AUTO_TEST_CASE(equality) +{ + uint256 num1 = 10; + uint256 num2 = 11; + BOOST_CHECK(num1+1 == num2); + + uint64 num3 = 10; + BOOST_CHECK(num1 == num3); + BOOST_CHECK(num1+num2 == num3+num2); +} + +BOOST_AUTO_TEST_SUITE_END() |