Skip to content

Commit a0c1d6d

Browse files
committed
Removed public modifier on JUnit5 test methods
1 parent 6ebd670 commit a0c1d6d

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/test/java/org/utplsql/maven/plugin/UtPlsqlMojoTest.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ private UtPlsqlMojo createUtPlsqlMojo() {
2929
}
3030

3131
@Test
32-
public void junitReporter() throws MojoExecutionException {
32+
void junitReporter() throws MojoExecutionException {
3333
UtPlsqlMojo utPlsqlMojo = createUtPlsqlMojo();
3434

3535
ReporterParameter junitReporter = new ReporterParameter();
@@ -44,7 +44,7 @@ public void junitReporter() throws MojoExecutionException {
4444
}
4545

4646
@Test
47-
public void absolutPath() throws MojoExecutionException {
47+
void absolutPath() throws MojoExecutionException {
4848
UtPlsqlMojo utPlsqlMojo = createUtPlsqlMojo();
4949

5050
ReporterParameter junitReporter = new ReporterParameter();
@@ -68,7 +68,7 @@ public void absolutPath() throws MojoExecutionException {
6868
}
6969

7070
@Test
71-
public void parentDoesNotExist() throws MojoExecutionException {
71+
void parentDoesNotExist() throws MojoExecutionException {
7272
UtPlsqlMojo utPlsqlMojo = createUtPlsqlMojo();
7373

7474
ReporterParameter junitReporter = new ReporterParameter();
@@ -83,7 +83,7 @@ public void parentDoesNotExist() throws MojoExecutionException {
8383
}
8484

8585
@Test
86-
public void onlyConsoleOutput() throws MojoExecutionException {
86+
void onlyConsoleOutput() throws MojoExecutionException {
8787
UtPlsqlMojo utPlsqlMojo = createUtPlsqlMojo();
8888

8989
ReporterParameter junitReporter = new ReporterParameter();
@@ -97,7 +97,7 @@ public void onlyConsoleOutput() throws MojoExecutionException {
9797
}
9898

9999
@Test
100-
public void onlyFileOutput() throws MojoExecutionException {
100+
void onlyFileOutput() throws MojoExecutionException {
101101
UtPlsqlMojo utPlsqlMojo = createUtPlsqlMojo();
102102

103103
ReporterParameter junitReporter = new ReporterParameter();
@@ -112,7 +112,7 @@ public void onlyFileOutput() throws MojoExecutionException {
112112
}
113113

114114
@Test
115-
public void skipUtplsqlTests() throws MojoExecutionException {
115+
void skipUtplsqlTests() throws MojoExecutionException {
116116
UtPlsqlMojo utPlsqlMojo = createUtPlsqlMojo();
117117

118118
utPlsqlMojo.skipUtplsqlTests = true;
@@ -128,7 +128,7 @@ public void skipUtplsqlTests() throws MojoExecutionException {
128128
}
129129

130130
@Test
131-
public void defaultReportAndExcludes() throws MojoExecutionException {
131+
void defaultReportAndExcludes() throws MojoExecutionException {
132132
UtPlsqlMojo utPlsqlMojo = createUtPlsqlMojo();
133133

134134
utPlsqlMojo.excludeObject = "abc";

0 commit comments

Comments
 (0)