llvm/libc/test/src/__support/blockstore_test.cpp

//===-- Unittests for BlockStore ------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include "src/__support/blockstore.h"
#include "test/UnitTest/Test.h"

struct Element {};

class LlvmLibcBlockStoreTest : public LIBC_NAMESPACE::testing::Test {};

TEST_F(LlvmLibcBlockStoreTest, PopulateAndIterate4) {}

TEST_F(LlvmLibcBlockStoreTest, PopulateAndIterate8) {}

TEST_F(LlvmLibcBlockStoreTest, PopulateAndIterate10) {}

TEST_F(LlvmLibcBlockStoreTest, PopulateAndIterateReverse4) {}

TEST_F(LlvmLibcBlockStoreTest, PopulateAndIterateReverse8) {}

TEST_F(LlvmLibcBlockStoreTest, PopulateAndIterateReverse10) {}

TEST_F(LlvmLibcBlockStoreTest, Back) {}

TEST_F(LlvmLibcBlockStoreTest, Empty) {}

TEST_F(LlvmLibcBlockStoreTest, Erase) {}