#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) { … }
}
}