~~ interfaceDeclaration.bracePosition: maintain, lineWidth: 40 ~~
== should maintain the position for the brace position when on same line ==
interface Test {
}

[expect]
interface Test {
}

== should maintain the position for the brace position when on a new line ==
interface Test
{
}

[expect]
interface Test
{
}

== should maintain the position for the brace position when hanging and on the same line ==
interface Test extends SomethingReallyReallyLong {
}

[expect]
interface Test
    extends SomethingReallyReallyLong {
}

== should maintain the position for the brace position when hanging and on the next line ==
interface Test extends SomethingReallyReallyLong
{
}

[expect]
interface Test
    extends SomethingReallyReallyLong
{
}
