19 lines
388 B
C++
19 lines
388 B
C++
#include "catch.hpp"
|
|
#include "data_structures/bitset/dynamic_bitset.hpp"
|
|
|
|
TEST_CASE("Dynamic bitset basic functionality")
|
|
{
|
|
DynamicBitset<> db;
|
|
db.set(222555, 1);
|
|
bool value = db.at(222555, 1);
|
|
REQUIRE(value == true);
|
|
|
|
db.set(32, 1);
|
|
value = db.at(32, 1);
|
|
REQUIRE(value == true);
|
|
|
|
db.clear(32, 1);
|
|
value = db.at(32, 1);
|
|
REQUIRE(value == false);
|
|
}
|