~~ method.forceMultiLineParameters: true, lineWidth: 40 ~~
== should force multi-line parameters when exceeding the line width ==
class Test {
    test(testing, thisOut, byExceeding, theLineWidth) {
    }
}

[expect]
class Test {
    test(
        testing,
        thisOut,
        byExceeding,
        theLineWidth
    ) {
    }
}

== should not be multi-line when not exceeding the line width ==
class Test {
    test(testing, this) {
    }
}

[expect]
class Test {
    test(testing, this) {
    }
}
