mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 02:22:30 +00:00
feat(big): add SBigIsOne
This commit is contained in:
parent
9074869097
commit
c9826d2336
5 changed files with 29 additions and 0 deletions
16
test/Big.cpp
16
test/Big.cpp
|
|
@ -470,6 +470,22 @@ TEST_CASE("SBigIsOdd", "[big]") {
|
|||
}
|
||||
}
|
||||
|
||||
TEST_CASE("SBigIsOne", "[big]") {
|
||||
BigDataTest a;
|
||||
|
||||
SECTION("1 is 1") {
|
||||
SBigFromUnsigned(a, 1);
|
||||
CHECK(SBigIsOne(a));
|
||||
}
|
||||
|
||||
SECTION("numbers are not 1") {
|
||||
auto v = GENERATE(0ULL, 2ULL, 10ULL, 11ULL, 10000000000001ULL, 0xFF00000000000001ULL);
|
||||
|
||||
SBigFromStr(a, std::to_string(v).c_str());
|
||||
CHECK_FALSE(SBigIsOne(a));
|
||||
}
|
||||
}
|
||||
|
||||
TEST_CASE("SBigMod", "[big]") {
|
||||
SECTION("mods 7 by 4") {
|
||||
BigData* a;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue