chromium/net/disk_cache/blockfile/bitmap_unittest.cc

// Copyright 2009 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/40284755): Remove this and spanify to fix the errors.
#pragma allow_unsafe_buffers
#endif

#include "net/disk_cache/blockfile/bitmap.h"
#include "testing/gtest/include/gtest/gtest.h"

TEST(BitmapTest, OverAllocate) {}

TEST(BitmapTest, DefaultConstructor) {}

TEST(BitmapTest, Basics) {}

TEST(BitmapTest, Toggle) {}

TEST(BitmapTest, Resize) {}

TEST(BitmapTest, Map) {}

TEST(BitmapTest, SetAll) {}

TEST(BitmapTest, Range) {}

TEST(BitmapTest, FindNextSetBitBeforeLimit) {}

TEST(BitmapTest, FindNextSetBitBeforeLimitAligned) {}

TEST(BitmapTest, FindNextSetBit) {}

TEST(BitmapTest, FindNextBit) {}

TEST(BitmapTest, SimpleFindBits) {}

TEST(BitmapTest, MultiWordFindBits) {}