| 22 | static_assert(!std::is_copy_assignable<bigint>::value, ""); |
| 23 | |
| 24 | TEST(bigint_test, construct) { |
| 25 | EXPECT_EQ(fmt::to_string(bigint()), ""); |
| 26 | EXPECT_EQ(fmt::to_string(bigint(0x42)), "42"); |
| 27 | EXPECT_EQ(fmt::to_string(bigint(0x123456789abcedf0)), "123456789abcedf0"); |
| 28 | } |
| 29 | |
| 30 | TEST(bigint_test, compare) { |
| 31 | bigint n1(42); |
nothing calls this directly
no test coverage detected