Skip to content

Commit 5698cfb

Browse files
author
Tibor Digana
committed
Fixed formating in Enclosed Javadoc
1 parent 067ed0a commit 5698cfb

File tree

1 file changed

+13
-14
lines changed

1 file changed

+13
-14
lines changed

src/main/java/org/junit/experimental/runners/Enclosed.java

+13-14
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,19 @@
1111
* If you put tests in inner classes, Ant, for example, won't find them. By running the outer class
1212
* with Enclosed, the tests in the inner classes will be run. You might put tests in inner classes
1313
* to group them for convenience or to share constants. Abstract inner classes are ignored.
14-
*
15-
* So, for example:
16-
* <pre>
17-
* \@RunWith(Enclosed.class)
18-
* public class ListTests {
19-
* ...useful shared stuff...
20-
* public static class OneKindOfListTest {...}
21-
* public static class AnotherKind {...}
22-
* abstract public static class Ignored {...}
23-
* }
24-
* </pre>
25-
*
26-
* For a real example, @see org.junit.tests.manipulation.SortableTest.
27-
*
14+
* <p>
15+
* So, for example:
16+
* <pre>
17+
* &#064;RunWith(Enclosed.class)
18+
* public class ListTests {
19+
* ...useful shared stuff...
20+
* public static class OneKindOfListTest {...}
21+
* public static class AnotherKind {...}
22+
* abstract public static class Ignored {...}
23+
* }
24+
* </pre>
25+
*
26+
* @see org.junit.tests.manipulation.SortableTest
2827
*/
2928
public class Enclosed extends Suite {
3029
/**

0 commit comments

Comments
 (0)