rspec/rules/S1134/apex/rule.adoc
2020-06-30 17:16:12 +02:00

12 lines
241 B
Plaintext

include::../description.adoc[]
== Noncompliant Code Example
----
Integer divide(Integer numerator, Integer denominator) {
return numerator / denominator; // FIXME denominator value might be 0
}
----
include::../see.adoc[]