33
33
import static org .junit .jupiter .api .Assertions .assertEquals ;
34
34
import static org .junit .jupiter .api .Assertions .assertTrue ;
35
35
36
- public class DefaultInvokerTest {
36
+ class DefaultInvokerTest {
37
37
38
38
private Invoker invoker = newInvoker ();
39
39
private InvocationRequest request = new DefaultInvocationRequest ();
@@ -46,7 +46,7 @@ public void setUp() {
46
46
47
47
@ Test
48
48
@ SuppressWarnings ("deprecation" )
49
- public void testBuildShouldSucceed () throws MavenInvocationException , URISyntaxException {
49
+ void testBuildShouldSucceed () throws MavenInvocationException , URISyntaxException {
50
50
File basedir = getBasedirForBuild ();
51
51
request .setBaseDirectory (basedir );
52
52
request .setGoals (Arrays .asList ("clean" , "package" ));
@@ -57,7 +57,7 @@ public void testBuildShouldSucceed() throws MavenInvocationException, URISyntaxE
57
57
}
58
58
59
59
@ Test
60
- public void testBuildShouldFail () throws MavenInvocationException , URISyntaxException {
60
+ void testBuildShouldFail () throws MavenInvocationException , URISyntaxException {
61
61
File basedir = getBasedirForBuild ();
62
62
request .setBaseDirectory (basedir );
63
63
request .addArgs (Arrays .asList ("clean" , "package" ));
@@ -68,7 +68,7 @@ public void testBuildShouldFail() throws MavenInvocationException, URISyntaxExce
68
68
}
69
69
70
70
@ Test
71
- public void testBuildShouldTimeout () throws MavenInvocationException , URISyntaxException {
71
+ void testBuildShouldTimeout () throws MavenInvocationException , URISyntaxException {
72
72
File basedir = getBasedirForBuild ();
73
73
request .setBaseDirectory (basedir );
74
74
request .addArgs (Arrays .asList ("clean" , "package" ));
@@ -89,7 +89,7 @@ public void testBuildShouldTimeout() throws MavenInvocationException, URISyntaxE
89
89
}
90
90
91
91
@ Test
92
- public void testSpacePom () throws Exception {
92
+ void testSpacePom () throws Exception {
93
93
File basedir = getBasedirForBuild ();
94
94
request .setBaseDirectory (basedir );
95
95
request .setPomFileName ("pom with spaces.xml" );
@@ -101,7 +101,7 @@ public void testSpacePom() throws Exception {
101
101
}
102
102
103
103
@ Test
104
- public void testSpaceAndSpecialCharPom () throws Exception {
104
+ void testSpaceAndSpecialCharPom () throws Exception {
105
105
File basedir = getBasedirForBuild ();
106
106
request .setBaseDirectory (basedir );
107
107
request .setPomFileName ("pom with spaces & special char.xml" );
@@ -113,7 +113,7 @@ public void testSpaceAndSpecialCharPom() throws Exception {
113
113
}
114
114
115
115
@ Test
116
- public void testSpaceSettings () throws Exception {
116
+ void testSpaceSettings () throws Exception {
117
117
File basedir = getBasedirForBuild ();
118
118
request .setBaseDirectory (basedir );
119
119
request .setUserSettingsFile (new File (basedir , "settings with spaces.xml" ));
@@ -125,7 +125,7 @@ public void testSpaceSettings() throws Exception {
125
125
}
126
126
127
127
@ Test
128
- public void testSpaceLocalRepo () throws Exception {
128
+ void testSpaceLocalRepo () throws Exception {
129
129
File basedir = getBasedirForBuild ();
130
130
request .setBaseDirectory (basedir );
131
131
request .setLocalRepositoryDirectory (new File (basedir , "repo with spaces" ));
@@ -137,7 +137,7 @@ public void testSpaceLocalRepo() throws Exception {
137
137
}
138
138
139
139
@ Test
140
- public void testSpaceProperties () throws Exception {
140
+ void testSpaceProperties () throws Exception {
141
141
File basedir = getBasedirForBuild ();
142
142
request .setBaseDirectory (basedir );
143
143
Properties props = getProperties ();
@@ -152,7 +152,7 @@ public void testSpaceProperties() throws Exception {
152
152
}
153
153
154
154
@ Test
155
- public void testPomOutsideProject () throws Exception {
155
+ void testPomOutsideProject () throws Exception {
156
156
File basedir = getBasedirForBuild ();
157
157
request .setBaseDirectory (basedir );
158
158
File pom = new File (basedir , "temp/pom.xml" );
@@ -165,7 +165,7 @@ public void testPomOutsideProject() throws Exception {
165
165
}
166
166
167
167
@ Test
168
- public void testMavenWrapperInProject () throws Exception {
168
+ void testMavenWrapperInProject () throws Exception {
169
169
File basedir = getBasedirForBuild ();
170
170
request .setBaseDirectory (basedir );
171
171
request .addArg ("test-wrapper-goal" );
0 commit comments