rspec/rules/S1134/apex/rule.adoc

12 lines
241 B
Plaintext
Raw Normal View History

2020-06-30 12:47:33 +02:00
include::../description.adoc[]
== Noncompliant Code Example
----
Integer divide(Integer numerator, Integer denominator) {
return numerator / denominator; // FIXME denominator value might be 0
}
----
include::../see.adoc[]