llvm/clang/unittests/Format/FormatTokenSourceTest.cpp

//===- unittest/Format/FormatTokenSourceTest.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 "../../lib/Format/FormatTokenSource.h"
#include "TestLexer.h"
#include "clang/Basic/TokenKinds.h"
#include "gtest/gtest.h"

namespace clang {
namespace format {
namespace {

class IndexedTokenSourceTest : public testing::Test {};

#define EXPECT_TOKEN_KIND(FormatTok, Kind)
#define EXPECT_TOKEN_ID(FormatTok, Name)

TEST_F(IndexedTokenSourceTest, EmptyInput) {}

TEST_F(IndexedTokenSourceTest, NavigateTokenStream) {}

TEST_F(IndexedTokenSourceTest, ResetPosition) {}

TEST_F(IndexedTokenSourceTest, InsertTokens) {}

TEST_F(IndexedTokenSourceTest, InsertTokensAtEOF) {}

TEST_F(IndexedTokenSourceTest, InsertTokensRecursive) {}

TEST_F(IndexedTokenSourceTest, InsertTokensRecursiveAtEndOfSequence) {}

} // namespace
} // namespace format
} // namespace clang