rspec/rules/S128/compliant.adoc

17 lines
251 B
Plaintext

=== Compliant solution
[source,text]
----
switch (myVariable) {
case 1:
foo();
break;
case 2:
doSomething();
break;
default:
doSomethingElse();
break;
}
----