llvm/clang/unittests/Format/FormatTestMacroExpansion.cpp

//===- unittest/Format/FormatMacroExpansion.cpp - Formatting unit tests ---===//
//
// 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 "FormatTestBase.h"

#define DEBUG_TYPE

namespace clang {
namespace format {
namespace test {
namespace {

class FormatTestMacroExpansion : public FormatTestBase {};

TEST_F(FormatTestMacroExpansion, UnexpandConfiguredMacros) {}

TEST_F(FormatTestMacroExpansion, KeepParensWhenExpandingObjectLikeMacros) {}

TEST_F(FormatTestMacroExpansion, DoesNotExpandFunctionLikeMacrosWithoutParens) {}

TEST_F(FormatTestMacroExpansion,
       ContinueFormattingAfterUnclosedParensAfterObjectLikeMacro) {}

TEST_F(FormatTestMacroExpansion, CommaAsOperator) {}

TEST_F(FormatTestMacroExpansion, ForcedBreakDiffers) {}

TEST_F(FormatTestMacroExpansion,
       PreferNotBreakingBetweenReturnTypeAndFunction) {}

TEST_F(FormatTestMacroExpansion, IndentChildrenWithinMacroCall) {}

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