inspection description tweak

GitOrigin-RevId: b0b337c3607c6bda61af07360d3d7d727a90db37
This commit is contained in:
Bas Leijdekkers
2021-05-19 10:44:04 +00:00
committed by intellij-monorepo-bot
parent 7f007c09d9
commit 358da7cc4e
@@ -1,10 +1,10 @@
<html>
<body>
Reports JUnit 4 test classes annotated with <code>@RunWith(Parameterized.class)</code> without
Reports JUnit 4 <a href="https://github.com/junit-team/junit4/wiki/parameterized-tests">parameterized test</a> classes annotated with <code>@RunWith(Parameterized.class)</code> without
a data provider method annotated with <code>@Parameterized.Parameters</code> or with a data provider method that has an incorrect signature.
A data provider method should be <code>public</code>, <code>static</code> and have a return type of <code>Iterable</code> or
<code>Object[]</code>.
Such <a href="https://github.com/junit-team/junit4/wiki/parameterized-tests">parameterized test</a> classes cannot be run.
Such test classes cannot be run.
<p>For example:</p>
<pre><code>
@RunWith(Parameterized.class)