llvm/libc/test/src/__support/CPP/span_test.cpp

//===-- Unittests for span ------------------------------------------------===//
//
// 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/CPP/array.h"
#include "src/__support/CPP/span.h"
#include "test/UnitTest/Test.h"

array;
span;

TEST(LlvmLibcSpanTest, InitializeEmpty) {}

TEST(LlvmLibcSpanTest, InitializeSingleton) {}

TEST(LlvmLibcSpanTest, InitializeCArray) {}

TEST(LlvmLibcSpanTest, InitializeArray) {}

TEST(LlvmLibcSpanTest, InitializeViewFormMutableSingleton) {}

TEST(LlvmLibcSpanTest, InitializeViewFormMutableCArray) {}

TEST(LlvmLibcSpanTest, InitializeViewFormMutableArray) {}

TEST(LlvmLibcSpanTest, InitializeFromMutable) {}

TEST(LlvmLibcSpanTest, Assign) {}

TEST(LlvmLibcSpanTest, AssignFromMutable) {}

TEST(LlvmLibcSpanTest, Modify) {}

TEST(LlvmLibcSpanTest, SubSpan) {}

TEST(LlvmLibcSpanTest, FirstAndLastSubSpan) {}