#include "src/heap/base/basic-slot-set.h"
#include <limits>
#include <map>
#include "testing/gtest/include/gtest/gtest.h"
namespace heap {
namespace base {
static constexpr size_t kTestGranularity = …;
TestSlotSet;
static constexpr size_t kTestPageSize = …;
static constexpr size_t kBucketsTestPage = …;
TEST(BasicSlotSet, InsertAndLookup1) { … }
TEST(BasicSlotSet, InsertAndLookup2) { … }
TEST(BasicSlotSet, Iterate) { … }
TEST(BasicSlotSet, IterateFromHalfway) { … }
TEST(BasicSlotSet, Remove) { … }
namespace {
void CheckRemoveRangeOn(uint32_t start, uint32_t end) { … }
}
TEST(BasicSlotSet, RemoveRange) { … }
}
}