diff --git a/Src/CSharpier.Tests/TestFiles/ConstructorDeclaration/ConstructorDeclarations.cst b/Src/CSharpier.Tests/TestFiles/ConstructorDeclaration/ConstructorDeclarations.cst index 26133443d..9be39a90e 100644 --- a/Src/CSharpier.Tests/TestFiles/ConstructorDeclaration/ConstructorDeclarations.cst +++ b/Src/CSharpier.Tests/TestFiles/ConstructorDeclaration/ConstructorDeclarations.cst @@ -59,6 +59,7 @@ public class Initializers : BasicClass longParameter____________________________________________________________________________ ) { } + // this may change, see #372 public WithParameters(string parameter) : base( longParameter____________________________________________________________________________ @@ -84,6 +85,19 @@ public class Initializers : BasicClass { WithBody(); } + + public LongParametersWithEmptyBody(string parameter, bool anotherParameter_________________) { } + + public LongParametersWithEmptyBody(string parameter, bool anotherParameter__________________) + { } + + public LongInitializerWithEmptyBody() : base(parameter, anotherParameter___________________) { } + + public LongInitializerWithEmptyBody() : base(parameter, anotherParameter__________________) { } + + public LongInitializerWithEmptyBody() + : base(parameter______________, anotherParameter___________________________________________) + { } } public class Exactly100