llvm/clang-tools-extra/pseudo/unittests/TokenTest.cpp

//===--- TokenTest.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 "clang-pseudo/Token.h"
#include "clang/Basic/LangOptions.h"
#include "clang/Basic/TokenKinds.h"
#include "gmock/gmock.h"
#include "gtest/gtest.h"

namespace clang {
namespace pseudo {
namespace {

AllOf;
ElementsAre;
ElementsAreArray;
Not;

MATCHER_P2(token, Text, Kind, "") {}

MATCHER_P(hasFlag, Flag, "") {}

MATCHER_P2(lineIndent, Line, Indent, "") {}

MATCHER_P(originalIndex, index, "") {}

TEST(TokenTest, Lex) {}

TEST(TokenTest, LineContinuation) {}

TEST(TokenTest, EncodedCharacters) {}

TEST(TokenTest, Indentation) {}

TEST(TokenTest, SplitGreaterGreater) {}

TEST(TokenTest, DropComments) {}

} // namespace
} // namespace pseudo
} // namespace clang