Skip to content

Commit 28644f0

Browse files
committed
refactor[test]: use package-private visibility
1 parent aae1637 commit 28644f0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/test/java/at/laborg/briss/AutoCropTest.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111

1212
import org.junit.jupiter.api.Test;
1313

14-
public class AutoCropTest {
14+
class AutoCropTest {
1515

1616
@Test
17-
public void testAutocrop() throws Exception {
17+
void testAutocrop() throws Exception {
1818
Path outputDirectory = Files.createTempDirectory(AutoCropTest.class.getCanonicalName());
1919

2020
Path documentPath = Paths.get("src/test/resources/pdfs/CREATIVE_COMMONS.pdf");
@@ -28,7 +28,7 @@ public void testAutocrop() throws Exception {
2828
}
2929

3030
@Test
31-
public void testCrop() throws Exception {
31+
void testCrop() throws Exception {
3232
Path outputDirectory = Files.createTempDirectory(AutoCropTest.class.getCanonicalName());
3333

3434
Path documentPath = Paths.get("src/test/resources/pdfs/example.pdf");
@@ -39,7 +39,7 @@ public void testCrop() throws Exception {
3939
}
4040

4141
@Test
42-
public void testCropWithPasswordProtectedFile() throws Exception {
42+
void testCropWithPasswordProtectedFile() throws Exception {
4343
Path outputDirectory = Files.createTempDirectory(AutoCropTest.class.getCanonicalName());
4444

4545
Path documentPath = Paths.get("src/test/resources/pdfs/example-protected.pdf");

0 commit comments

Comments
 (0)