rspec/rules/S1125/vb6/rule.adoc

27 lines
481 B
Plaintext
Raw Normal View History

include::../description.adoc[]
== Noncompliant Code Example
----
If BooleanVariable = True Then ...
If BooleanVariable <> True Then ...
If BooleanVariable OR False Then ...
DoSomething(Not False)
----
== Compliant Solution
----
If BooleanVariable Then ...
If Not BooleanVariable Then ...
If BooleanVariable Then ...
DoSomething(True)
----
ifdef::rspecator-view[]
== Comments And Links
(visible only on this page)
include::../comments-and-links.adoc[]
endif::rspecator-view[]