2023-05-03 11:06:20 +02:00
|
|
|
== Why is this an issue?
|
|
|
|
|
2021-06-08 14:23:48 +02:00
|
|
|
Switch statements should be easy to read and to understand. Writing too many lines of
|
|
|
|
|
|
|
|
code in case clauses quickly makes it harder to get the overall behaviour of a switch
|
|
|
|
|
|
|
|
statement.
|
|
|
|
|
|
|
|
|
|
|
|
When the number of lines a exceeds specific number, the best option is to extract the
|
|
|
|
|
|
|
|
corresponding code into a new function with a meaningful name.
|
|
|
|
|
2022-01-25 18:36:46 +01:00
|
|
|
ifdef::env-github,rspecator-view[]
|
|
|
|
|
|
|
|
'''
|
|
|
|
== Comments And Links
|
|
|
|
(visible only on this page)
|
|
|
|
|
2023-05-25 14:18:12 +02:00
|
|
|
=== duplicates: S1151
|
|
|
|
|
2022-01-25 18:36:46 +01:00
|
|
|
|
|
|
|
endif::env-github,rspecator-view[]
|