52 lines
1.0 KiB
Plaintext
52 lines
1.0 KiB
Plaintext
Annotating unit tests with more than one test-related annotation is not only useless but could also result in unexpected behavior like failing tests or unwanted side-effects.
|
|
|
|
|
|
|
|
This rule reports an issue when a test method is annotated with more than one of the following competing annotation:
|
|
|
|
* @Test
|
|
* @RepeatedTest
|
|
* @ParameterizedTest
|
|
* @TestFactory
|
|
* @TestTemplate
|
|
|
|
|
|
== Noncompliant Code Example
|
|
|
|
[source,java]
|
|
----
|
|
@Test
|
|
@RepeatedTest(2) // Noncompliant, this test will be repeated 3 times
|
|
void test() { }
|
|
|
|
@ParameterizedTest
|
|
@Test
|
|
@MethodSource("methodSource")
|
|
void test2(int argument) { } // Noncompliant, this test will fail with ParameterResolutionException
|
|
----
|
|
|
|
|
|
== Compliant Solution
|
|
|
|
[source,java]
|
|
----
|
|
@RepeatedTest(2)
|
|
void test() { }
|
|
|
|
@ParameterizedTest
|
|
@MethodSource("methodSource")
|
|
void test2(int argument) { }
|
|
----
|
|
|
|
ifdef::env-github,rspecator-view[]
|
|
|
|
'''
|
|
== Implementation Specification
|
|
(visible only on this page)
|
|
|
|
include::message.adoc[]
|
|
|
|
include::highlighting.adoc[]
|
|
|
|
endif::env-github,rspecator-view[]
|