Skip to content

Commit

Permalink
PDFBOX-5660: create directory before test
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/pdfbox/trunk@1913206 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
THausherr committed Oct 22, 2023
1 parent 3dc3a02 commit 3c88d44
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,15 @@
import org.apache.pdfbox.pdmodel.font.PDFont;
import org.apache.pdfbox.pdmodel.font.PDType0Font;

import org.junit.jupiter.api.BeforeAll;

class TestCOSIncrement
{
@BeforeAll
static void init()
{
new File("target/test-output").mkdirs();
}

// TODO Very basic and primitive test - add in depth testing for all this.
/**
Expand Down

0 comments on commit 3c88d44

Please sign in to comment.