rspec/rules/S1067/vbnet/rule.adoc

54 lines
835 B
Plaintext
Raw Normal View History

== Why is this an issue?
2020-06-30 12:47:33 +02:00
Complex boolean expressions are hard to read and so to maintain.
=== Noncompliant code example
2020-06-30 12:47:33 +02:00
With the default threshold value of 3
2021-02-02 15:02:10 +01:00
2022-02-04 17:28:24 +01:00
[source,vbnet]
2020-06-30 12:47:33 +02:00
----
If ((condition1 AndAlso condition2) OrElse (condition3 AndAlso condition4)) AndAlso condition5) Then 'Noncompliant
...
End If
----
=== Compliant solution
2020-06-30 12:47:33 +02:00
2022-02-04 17:28:24 +01:00
[source,vbnet]
2020-06-30 12:47:33 +02:00
----
If ((MyFirstCondition() OrElse MySecondCondition()) AndAlso MyLastCondition()) Then
...
End If
----
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
include::../message.adoc[]
=== Parameters
.max
****
----
3
----
Maximum number of allowed conditional operators in an expression
****
'''
== Comments And Links
(visible only on this page)
include::../comments-and-links.adoc[]
endif::env-github,rspecator-view[]