//===- unittest/Format/IntegerLiteralSeparatorTest.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 "FormatTestBase.h" #define DEBUG_TYPE … namespace clang { namespace format { namespace test { namespace { class IntegerLiteralSeparatorTest : public FormatTestBase { … }; TEST_F(IntegerLiteralSeparatorTest, SingleQuoteAsSeparator) { … } TEST_F(IntegerLiteralSeparatorTest, UnderscoreAsSeparator) { … } TEST_F(IntegerLiteralSeparatorTest, MinDigits) { … } TEST_F(IntegerLiteralSeparatorTest, FixRanges) { … } TEST_F(IntegerLiteralSeparatorTest, FloatingPoint) { … } } // namespace } // namespace test } // namespace format } // namespace clang