diff options
author | Daniel Jasper <djasper@google.com> | 2014-09-12 16:35:28 +0000 |
---|---|---|
committer | Daniel Jasper <djasper@google.com> | 2014-09-12 16:35:28 +0000 |
commit | d6f17d83a38c4e41b63cfb91aa115b6dcac78c34 (patch) | |
tree | 00f965f5f0d05b3c69555e076965bfb2b1863a6c /clang/unittests/Format/FormatTest.cpp | |
parent | e9ead73cdbb004d6ae879db904cab1e0a8a47464 (diff) | |
download | bcm5719-llvm-d6f17d83a38c4e41b63cfb91aa115b6dcac78c34.tar.gz bcm5719-llvm-d6f17d83a38c4e41b63cfb91aa115b6dcac78c34.zip |
clang-format: Improve line breaks at function calls.
Before:
EXPECT_CALL(SomeObject, SomeFunction(Parameter)).Times(2).WillRepeatedly(
Return(SomeValue));
After:
EXPECT_CALL(SomeObject, SomeFunction(Parameter))
.Times(2)
.WillRepeatedly(Return(SomeValue));
llvm-svn: 217687
Diffstat (limited to 'clang/unittests/Format/FormatTest.cpp')
-rw-r--r-- | clang/unittests/Format/FormatTest.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/clang/unittests/Format/FormatTest.cpp b/clang/unittests/Format/FormatTest.cpp index f8e318365bf..dfa31085a96 100644 --- a/clang/unittests/Format/FormatTest.cpp +++ b/clang/unittests/Format/FormatTest.cpp @@ -4452,6 +4452,11 @@ TEST_F(FormatTest, WrapsAtFunctionCallsIfNecessary) { verifyFormat("EXPECT_CALL(SomeObject, SomeFunction(Parameter))\n" " .WillRepeatedly(Return(SomeValue));"); + verifyFormat("void f() {\n" + " EXPECT_CALL(SomeObject, SomeFunction(Parameter))\n" + " .Times(2)\n" + " .WillRepeatedly(Return(SomeValue));\n" + "}"); verifyFormat("SomeMap[std::pair(aaaaaaaaaaaa, bbbbbbbbbbbbbbb)].insert(\n" " ccccccccccccccccccccccc);"); verifyFormat("aaaaa(aaaaa(aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa,\n" |