llvm/llvm/unittests/Testing/Annotations/AnnotationsTest.cpp

//===----- unittests/AnnotationsTest.cpp ----------------------------------===//
//
// 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 "llvm/Testing/Annotations/Annotations.h"
#include "gmock/gmock.h"
#include "gtest/gtest.h"

AllOf;
ElementsAre;
IsEmpty;
Pair;
ResultOf;
UnorderedElementsAre;

namespace {
MATCHER_P2(pair, first_matcher, second_matcher, "") {}

llvm::Annotations::Range range(size_t Begin, size_t End) {}

TEST(AnnotationsTest, CleanedCode) {}

TEST(AnnotationsTest, Points) {}

TEST(AnnotationsTest, AllPoints) {}

TEST(AnnotationsTest, Ranges) {}

TEST(AnnotationsTest, AllRanges) {}

TEST(AnnotationsTest, Nested) {}

TEST(AnnotationsTest, Payload) {}

TEST(AnnotationsTest, Named) {}

TEST(AnnotationsTest, Errors) {}
} // namespace