llvm/clang/unittests/Format/FormatTestProto.cpp

//===- unittest/Format/FormatTestProto.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 "FormatTestUtils.h"
#include "clang/Format/Format.h"
#include "llvm/Support/Debug.h"
#include "gtest/gtest.h"

#define DEBUG_TYPE

namespace clang {
namespace format {

class FormatTestProto : public testing::Test {};

TEST_F(FormatTestProto, FormatsMessages) {}

TEST_F(FormatTestProto, KeywordsInOtherLanguages) {}

TEST_F(FormatTestProto, FormatsEnums) {}

TEST_F(FormatTestProto, EnumAsFieldName) {}

TEST_F(FormatTestProto, CaseAsFieldName) {}

TEST_F(FormatTestProto, UnderstandsReturns) {}

TEST_F(FormatTestProto, MessageFieldAttributes) {}

TEST_F(FormatTestProto, DoesntWrapFileOptions) {}

TEST_F(FormatTestProto, TrailingCommentAfterFileOption) {}

TEST_F(FormatTestProto, FormatsOptions) {}

TEST_F(FormatTestProto, DoesntWrapPackageStatements) {}

TEST_F(FormatTestProto, TrailingCommentAfterPackage) {}

TEST_F(FormatTestProto, FormatsService) {}

TEST_F(FormatTestProto, ExtendingMessage) {}

TEST_F(FormatTestProto, FormatsImports) {}

TEST_F(FormatTestProto, KeepsLongStringLiteralsOnSameLine) {}

TEST_F(FormatTestProto, FormatsOptionsExtensions) {}

TEST_F(FormatTestProto, SpacesAroundPercents) {}

TEST_F(FormatTestProto, FormatsRepeatedListInitializersInOptions) {}

TEST_F(FormatTestProto, AcceptsOperatorAsKeyInOptions) {}

TEST_F(FormatTestProto, BreaksEntriesOfSubmessagesContainingSubmessages) {}

TEST_F(FormatTestProto, PreventBreaksBetweenKeyAndSubmessages) {}

} // namespace format
} // end namespace clang