mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-06 10:18:44 -05:00
![Vegard Nossum](/assets/img/avatar_default.png)
There were some problems with the existing testing setup: - Makefile rules for test-file compilation used CFLAGS instead of CXXFLAGS in makefile.unix
18 lines
338 B
C++
18 lines
338 B
C++
#include <boost/test/unit_test.hpp>
|
|
|
|
#include "../uint256.h"
|
|
|
|
BOOST_AUTO_TEST_SUITE(uint160_tests)
|
|
|
|
BOOST_AUTO_TEST_CASE(equality)
|
|
{
|
|
uint160 num1 = 10;
|
|
uint160 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()
|