(self)
| 313 | ] |
| 314 | |
| 315 | def testNamespaceIndentationIndentedParameter(self): |
| 316 | lines = [ |
| 317 | "namespace Test {", |
| 318 | "void foo(SuperLongTypeName d = 418,", |
| 319 | " SuperLongTypeName e = 2.71) { }", |
| 320 | "} // namespace Test", |
| 321 | ] |
| 322 | |
| 323 | results = self.GetNamespaceResults(lines) |
| 324 | assert results == "" |
| 325 | |
| 326 | def testNamespaceIndentationMemberInitializerList(self): |
| 327 | lines = [ |
nothing calls this directly
no test coverage detected