Skip to content

Commit 74dadfd

Browse files
[MSHARED-1152] Remove public modifier for JUnit5 tests
1 parent a309c8e commit 74dadfd

File tree

5 files changed

+109
-109
lines changed

5 files changed

+109
-109
lines changed

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ under the License.
8181
</dependency>
8282
<dependency>
8383
<groupId>org.junit.jupiter</groupId>
84-
<artifactId>junit-jupiter</artifactId>
84+
<artifactId>junit-jupiter-api</artifactId>
8585
<scope>test</scope>
8686
</dependency>
8787
</dependencies>

src/test/java/org/apache/maven/shared/invoker/DefaultInvokerTest.java

+11-11
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
import static org.junit.jupiter.api.Assertions.assertEquals;
3434
import static org.junit.jupiter.api.Assertions.assertTrue;
3535

36-
public class DefaultInvokerTest {
36+
class DefaultInvokerTest {
3737

3838
private Invoker invoker = newInvoker();
3939
private InvocationRequest request = new DefaultInvocationRequest();
@@ -46,7 +46,7 @@ public void setUp() {
4646

4747
@Test
4848
@SuppressWarnings("deprecation")
49-
public void testBuildShouldSucceed() throws MavenInvocationException, URISyntaxException {
49+
void testBuildShouldSucceed() throws MavenInvocationException, URISyntaxException {
5050
File basedir = getBasedirForBuild();
5151
request.setBaseDirectory(basedir);
5252
request.setGoals(Arrays.asList("clean", "package"));
@@ -57,7 +57,7 @@ public void testBuildShouldSucceed() throws MavenInvocationException, URISyntaxE
5757
}
5858

5959
@Test
60-
public void testBuildShouldFail() throws MavenInvocationException, URISyntaxException {
60+
void testBuildShouldFail() throws MavenInvocationException, URISyntaxException {
6161
File basedir = getBasedirForBuild();
6262
request.setBaseDirectory(basedir);
6363
request.addArgs(Arrays.asList("clean", "package"));
@@ -68,7 +68,7 @@ public void testBuildShouldFail() throws MavenInvocationException, URISyntaxExce
6868
}
6969

7070
@Test
71-
public void testBuildShouldTimeout() throws MavenInvocationException, URISyntaxException {
71+
void testBuildShouldTimeout() throws MavenInvocationException, URISyntaxException {
7272
File basedir = getBasedirForBuild();
7373
request.setBaseDirectory(basedir);
7474
request.addArgs(Arrays.asList("clean", "package"));
@@ -89,7 +89,7 @@ public void testBuildShouldTimeout() throws MavenInvocationException, URISyntaxE
8989
}
9090

9191
@Test
92-
public void testSpacePom() throws Exception {
92+
void testSpacePom() throws Exception {
9393
File basedir = getBasedirForBuild();
9494
request.setBaseDirectory(basedir);
9595
request.setPomFileName("pom with spaces.xml");
@@ -101,7 +101,7 @@ public void testSpacePom() throws Exception {
101101
}
102102

103103
@Test
104-
public void testSpaceAndSpecialCharPom() throws Exception {
104+
void testSpaceAndSpecialCharPom() throws Exception {
105105
File basedir = getBasedirForBuild();
106106
request.setBaseDirectory(basedir);
107107
request.setPomFileName("pom with spaces & special char.xml");
@@ -113,7 +113,7 @@ public void testSpaceAndSpecialCharPom() throws Exception {
113113
}
114114

115115
@Test
116-
public void testSpaceSettings() throws Exception {
116+
void testSpaceSettings() throws Exception {
117117
File basedir = getBasedirForBuild();
118118
request.setBaseDirectory(basedir);
119119
request.setUserSettingsFile(new File(basedir, "settings with spaces.xml"));
@@ -125,7 +125,7 @@ public void testSpaceSettings() throws Exception {
125125
}
126126

127127
@Test
128-
public void testSpaceLocalRepo() throws Exception {
128+
void testSpaceLocalRepo() throws Exception {
129129
File basedir = getBasedirForBuild();
130130
request.setBaseDirectory(basedir);
131131
request.setLocalRepositoryDirectory(new File(basedir, "repo with spaces"));
@@ -137,7 +137,7 @@ public void testSpaceLocalRepo() throws Exception {
137137
}
138138

139139
@Test
140-
public void testSpaceProperties() throws Exception {
140+
void testSpaceProperties() throws Exception {
141141
File basedir = getBasedirForBuild();
142142
request.setBaseDirectory(basedir);
143143
Properties props = getProperties();
@@ -152,7 +152,7 @@ public void testSpaceProperties() throws Exception {
152152
}
153153

154154
@Test
155-
public void testPomOutsideProject() throws Exception {
155+
void testPomOutsideProject() throws Exception {
156156
File basedir = getBasedirForBuild();
157157
request.setBaseDirectory(basedir);
158158
File pom = new File(basedir, "temp/pom.xml");
@@ -165,7 +165,7 @@ public void testPomOutsideProject() throws Exception {
165165
}
166166

167167
@Test
168-
public void testMavenWrapperInProject() throws Exception {
168+
void testMavenWrapperInProject() throws Exception {
169169
File basedir = getBasedirForBuild();
170170
request.setBaseDirectory(basedir);
171171
request.addArg("test-wrapper-goal");

0 commit comments

Comments
 (0)