rspec/rules/S1192/scala/rule.adoc

56 lines
1008 B
Plaintext
Raw Normal View History

== Why is this an issue?
2020-06-30 12:47:33 +02:00
include::../description.adoc[]
2023-10-11 11:41:24 +02:00
=== Exceptions
To prevent generating some false-positives, literals having 5 or less characters are excluded as well as literals containing only letters, digits and '_'.
== How to fix it
include::../howtofix.adoc[]
=== Code examples
==== Noncompliant code example
2020-06-30 12:47:33 +02:00
With the default threshold of 3:
2023-10-11 11:41:24 +02:00
[source,scala,diff-id=1,diff-type=noncompliant]
2020-06-30 12:47:33 +02:00
----
public def run() {
prepare("action random1") // Noncompliant - "action random1" is duplicated 3 times
execute("action random1")
release("action random1")
}
----
2023-10-11 11:41:24 +02:00
==== Compliant solution
2020-06-30 12:47:33 +02:00
2023-10-11 11:41:24 +02:00
[source,scala,diff-id=1,diff-type=compliant]
2020-06-30 12:47:33 +02:00
----
public def run() {
2023-10-11 11:41:24 +02:00
val Action = "action random1"
prepare(Action)
execute(Action)
release(Action)
2020-06-30 12:47:33 +02:00
}
----
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
include::../message.adoc[]
include::../parameters.adoc[]
include::../highlighting.adoc[]
'''
endif::env-github,rspecator-view[]