llvm/clang/unittests/Format/FormatTestJava.cpp

//===- unittest/Format/FormatTestJava.cpp - Formatting tests for Java -----===//
//
// 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 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) {}

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