Skip to content

Commit fd3b946

Browse files
committed
1 parent 5ac4c83 commit fd3b946

File tree

3 files changed

+1543
-0
lines changed

3 files changed

+1543
-0
lines changed

fj-doc-sample/src/test/java/test/org/fugerit/java/doc/sample/dev/TestFo01.java

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,21 @@ void test01() throws Exception {
1616
new File( BasicFacadeTest.BASIC_OUTPUT_PATH, testCase+".pdf" ) );
1717
Assertions.assertTrue( res );
1818
}
19+
20+
@Test
21+
void test01KeepTogether1WithinSpace() throws Exception {
22+
String testCase = "test-fo-01-keep-together-1";
23+
boolean res = this.workerFoToPdf( new File( "src/test/resources/dev/"+testCase+".fo" ),
24+
new File( BasicFacadeTest.BASIC_OUTPUT_PATH, testCase+".pdf" ) );
25+
Assertions.assertTrue( res );
26+
}
27+
28+
@Test
29+
void test01KeepTogether2WithinSpace() throws Exception {
30+
String testCase = "test-fo-01-keep-together-2";
31+
boolean res = this.workerFoToPdf( new File( "src/test/resources/dev/"+testCase+".fo" ),
32+
new File( BasicFacadeTest.BASIC_OUTPUT_PATH, testCase+".pdf" ) );
33+
Assertions.assertTrue( res );
34+
}
35+
1936
}

0 commit comments

Comments
 (0)