diff options
Diffstat (limited to 'clang/unittests/Format')
| -rw-r--r-- | clang/unittests/Format/FormatTest.cpp | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/clang/unittests/Format/FormatTest.cpp b/clang/unittests/Format/FormatTest.cpp index bdb3fbe4835..400a55827a0 100644 --- a/clang/unittests/Format/FormatTest.cpp +++ b/clang/unittests/Format/FormatTest.cpp @@ -12108,6 +12108,12 @@ TEST_F(FormatTest, FileAndCode) {    EXPECT_EQ(FormatStyle::LK_ObjC, guessLanguage("foo.h", "@interface Foo\n@end\n"));    EXPECT_EQ(FormatStyle::LK_Cpp, guessLanguage("foo", ""));    EXPECT_EQ(FormatStyle::LK_ObjC, guessLanguage("foo", "@interface Foo\n@end\n")); +  EXPECT_EQ(FormatStyle::LK_ObjC, +            guessLanguage("foo.h", "int DoStuff(CGRect rect);\n")); +  EXPECT_EQ( +      FormatStyle::LK_ObjC, +      guessLanguage("foo.h", +                    "#define MY_POINT_MAKE(x, y) CGPointMake((x), (y));\n"));  }  TEST_F(FormatTest, GuessLanguageWithCpp11AttributeSpecifiers) { | 

