We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d483c7 commit 048c482Copy full SHA for 048c482
junit-start/src/main/java/module-info.java
@@ -8,21 +8,19 @@
8
* https://www.eclipse.org/legal/epl-v20.html
9
*/
10
11
-
12
/// Defines the API of the JUnit Start module for writing and running tests.
13
///
14
-/// Usage example:
+/// Usage example in a `HelloTests.java` compact source-file program:
15
/// ```java
16
/// import module org.junit.start;
17
18
-/// void main() {
19
-/// JUnit.run();
20
-/// }
+/// void main() {
+/// JUnit.run();
+/// }
21
22
-/// @Test
23
-/// void addition() {
24
-/// Assertions.assertEquals(2, 1 + 1, "Addition error detected!");
25
+/// @Test
+/// void addition() {
+/// Assertions.assertEquals(2, 1 + 1, "Addition error detected!");
26
/// }
27
/// ```
28
module org.junit.start {
0 commit comments