Author: tilman
Date: Sun Oct 22 13:23:21 2023
New Revision: 1913204
URL: http://svn.apache.org/viewvc?rev=1913204&view=rev
Log:
PDFBOX-5660: create directory before test
Modified:
pdfbox/branches/2.0/pdfbox/src/test/java/org/apache/pdfbox/cos/TestCOSIncrement.java
Modified:
pdfbox/branches/2.0/pdfbox/src/test/java/org/apache/pdfbox/cos/TestCOSIncrement.java
URL:
http://svn.apache.org/viewvc/pdfbox/branches/2.0/pdfbox/src/test/java/org/apache/pdfbox/cos/TestCOSIncrement.java?rev=1913204&r1=1913203&r2=1913204&view=diff
==============================================================================
---
pdfbox/branches/2.0/pdfbox/src/test/java/org/apache/pdfbox/cos/TestCOSIncrement.java
(original)
+++
pdfbox/branches/2.0/pdfbox/src/test/java/org/apache/pdfbox/cos/TestCOSIncrement.java
Sun Oct 22 13:23:21 2023
@@ -30,11 +30,18 @@ import org.apache.pdfbox.pdmodel.font.PD
import org.apache.pdfbox.pdmodel.font.PDType0Font;
import static org.junit.Assert.assertTrue;
+import org.junit.BeforeClass;
import org.junit.Test;
public class TestCOSIncrement
{
+ @BeforeClass
+ public static void init() throws Exception
+ {
+ new File("target/test-output").mkdirs();
+ }
+
/**
* Check that subsetting takes place in incremental saving.
*