#include "FormatTestBase.h"
#define DEBUG_TYPE …
namespace clang {
namespace format {
namespace test {
namespace {
class FormatTestJava : public test::FormatTestBase { … };
TEST_F(FormatTestJava, NoAlternativeOperatorNames) { … }
TEST_F(FormatTestJava, UnderstandsCasts) { … }
TEST_F(FormatTestJava, FormatsInstanceOfLikeOperators) { … }
TEST_F(FormatTestJava, Chromium) { … }
TEST_F(FormatTestJava, QualifiedNames) { … }
TEST_F(FormatTestJava, ClassKeyword) { … }
TEST_F(FormatTestJava, ClassDeclarations) { … }
TEST_F(FormatTestJava, AnonymousClasses) { … }
TEST_F(FormatTestJava, EnumDeclarations) { … }
TEST_F(FormatTestJava, ArrayInitializers) { … }
TEST_F(FormatTestJava, ThrowsDeclarations) { … }
TEST_F(FormatTestJava, Annotations) { … }
TEST_F(FormatTestJava, Generics) { … }
TEST_F(FormatTestJava, StringConcatenation) { … }
TEST_F(FormatTestJava, TryCatchFinally) { … }
TEST_F(FormatTestJava, TryWithResources) { … }
TEST_F(FormatTestJava, SynchronizedKeyword) { … }
TEST_F(FormatTestJava, AssertKeyword) { … }
TEST_F(FormatTestJava, PackageDeclarations) { … }
TEST_F(FormatTestJava, ImportDeclarations) { … }
TEST_F(FormatTestJava, MethodDeclarations) { … }
TEST_F(FormatTestJava, MethodReference) { … }
TEST_F(FormatTestJava, CppKeywords) { … }
TEST_F(FormatTestJava, NeverAlignAfterReturn) { … }
TEST_F(FormatTestJava, FormatsInnerBlocks) { … }
TEST_F(FormatTestJava, FormatsLambdas) { … }
TEST_F(FormatTestJava, BreaksStringLiterals) { … }
TEST_F(FormatTestJava, AlignsBlockComments) { … }
TEST_F(FormatTestJava, AlignDeclarations) { … }
TEST_F(FormatTestJava, KeepsDelimitersOnOwnLineInJavaDocComments) { … }
TEST_F(FormatTestJava, RetainsLogicalShifts) { … }
TEST_F(FormatTestJava, ShortFunctions) { … }
TEST_F(FormatTestJava, ConfigurableSpacesInSquareBrackets) { … }
TEST_F(FormatTestJava, SwitchExpression) { … }
TEST_F(FormatTestJava, ShortCaseExpression) { … }
TEST_F(FormatTestJava, AlignCaseArrows) { … }
}
}
}
}