mirror of https://github.com/apache/poi.git
Fix the inconsistent indents in the test file
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1575600 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
0cf3937949
commit
6d2060f100
|
@ -28,7 +28,6 @@ import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTR;
|
|||
import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTText;
|
||||
|
||||
public final class TestXWPFHeader extends TestCase {
|
||||
|
||||
public void testSimpleHeader() throws IOException {
|
||||
XWPFDocument sampleDoc = XWPFTestDataSamples.openSampleDocument("headerFooter.docx");
|
||||
|
||||
|
@ -163,7 +162,8 @@ public final class TestXWPFHeader extends TestCase {
|
|||
|
||||
public void testSetWatermark() throws IOException {
|
||||
XWPFDocument sampleDoc = XWPFTestDataSamples.openSampleDocument("SampleDoc.docx");
|
||||
// no header is set (yet)
|
||||
|
||||
// No header is set (yet)
|
||||
XWPFHeaderFooterPolicy policy = sampleDoc.getHeaderFooterPolicy();
|
||||
assertNull(policy.getDefaultHeader());
|
||||
assertNull(policy.getFirstPageHeader());
|
||||
|
@ -174,21 +174,29 @@ public final class TestXWPFHeader extends TestCase {
|
|||
assertNotNull(policy.getDefaultHeader());
|
||||
assertNotNull(policy.getFirstPageHeader());
|
||||
assertNotNull(policy.getEvenPageHeader());
|
||||
|
||||
// Re-open, and check
|
||||
XWPFDocument reopened = XWPFTestDataSamples.writeOutAndReadBack(sampleDoc);
|
||||
policy = reopened.getHeaderFooterPolicy();
|
||||
|
||||
assertNotNull(policy.getDefaultHeader());
|
||||
assertNotNull(policy.getFirstPageHeader());
|
||||
assertNotNull(policy.getEvenPageHeader());
|
||||
}
|
||||
|
||||
public void testAddPictureData() {
|
||||
|
||||
// TODO
|
||||
}
|
||||
|
||||
public void testGetAllPictures() {
|
||||
|
||||
// TODO
|
||||
}
|
||||
|
||||
public void testGetAllPackagePictures() {
|
||||
|
||||
// TODO
|
||||
}
|
||||
|
||||
public void testGetPictureDataById() {
|
||||
|
||||
// TODO
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue