diff options
Diffstat (limited to 'clang/unittests/Format')
| -rw-r--r-- | clang/unittests/Format/FormatTest.cpp | 16 | 
1 files changed, 16 insertions, 0 deletions
diff --git a/clang/unittests/Format/FormatTest.cpp b/clang/unittests/Format/FormatTest.cpp index 02a77af4f75..62534c6fbae 100644 --- a/clang/unittests/Format/FormatTest.cpp +++ b/clang/unittests/Format/FormatTest.cpp @@ -7444,6 +7444,14 @@ TEST_F(FormatTest, AllmanBraceBreaking) {                 "}\n",                 BreakBeforeBrace); +  verifyFormat("@interface BSApplicationController ()\n" +               "{\n" +               "@private\n" +               "  id _extraIvar;\n" +               "}\n" +               "@end\n", +               BreakBeforeBrace); +    BreakBeforeBrace.ColumnLimit = 19;    verifyFormat("void f() { int i; }", BreakBeforeBrace);    BreakBeforeBrace.ColumnLimit = 18; @@ -7564,6 +7572,14 @@ TEST_F(FormatTest, GNUBraceBreaking) {                 "  Y = 0,\n"                 "}\n",                 GNUBraceStyle); + +  verifyFormat("@interface BSApplicationController ()\n" +               "{\n" +               "@private\n" +               "  id _extraIvar;\n" +               "}\n" +               "@end\n", +               GNUBraceStyle);  }  TEST_F(FormatTest, CatchExceptionReferenceBinding) {    verifyFormat("void f() {\n"  | 

