Fix inconsistent whitespace in HSMF test files

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1496969 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Nick Burch 2013-06-26 15:28:25 +00:00
parent 73aa6c507e
commit 43886b815b
5 changed files with 374 additions and 386 deletions

View File

@ -28,9 +28,6 @@ import junit.framework.TestCase;
/** /**
* Tests to verify that the library can read blank msg files. * Tests to verify that the library can read blank msg files.
*
* @author Travis Ferguson
*
*/ */
public final class TestBlankFileRead extends TestCase { public final class TestBlankFileRead extends TestCase {
private MAPIMessage mapiMessage; private MAPIMessage mapiMessage;
@ -121,6 +118,4 @@ public final class TestBlankFileRead extends TestCase {
} }
TestCase.fail("We shouldn't have a ConversationTopic node on the blank.msg file."); TestCase.fail("We shouldn't have a ConversationTopic node on the blank.msg file.");
} }
} }

View File

@ -45,8 +45,6 @@ public final class TestFixedSizedProperties extends POITestCase {
/** /**
* Initialize this test, load up the messages. * Initialize this test, load up the messages.
*
* @throws Exception
*/ */
public TestFixedSizedProperties() throws Exception { public TestFixedSizedProperties() throws Exception {
POIDataSamples samples = POIDataSamples.getHSMFInstance(); POIDataSamples samples = POIDataSamples.getHSMFInstance();

View File

@ -29,7 +29,7 @@ import junit.framework.TestCase;
* Tests to verify that we can still work on the newer Outlook 3.0 files. * Tests to verify that we can still work on the newer Outlook 3.0 files.
*/ */
public final class TestOutlook30FileRead extends TestCase { public final class TestOutlook30FileRead extends TestCase {
private MAPIMessage mapiMessage; private MAPIMessage mapiMessage;
/** /**
* Initialize this test, load up the blank.msg mapi message. * Initialize this test, load up the blank.msg mapi message.

View File

@ -26,13 +26,11 @@ import org.apache.poi.POIDataSamples;
import junit.framework.TestCase; import junit.framework.TestCase;
/** /**
* Tests to verify that we can read a simple msg file, that is in plain/text format with no attachments * Tests to verify that we can read a simple msg file, that is in plain/text
* or extra recipents. * format with no attachments or extra recipents.
*
* @author Travis Ferguson
*/ */
public final class TestSimpleFileRead extends TestCase { public final class TestSimpleFileRead extends TestCase {
private MAPIMessage mapiMessage; private MAPIMessage mapiMessage;
/** /**
* Initialize this test, load up the blank.msg mapi message. * Initialize this test, load up the blank.msg mapi message.
@ -136,7 +134,4 @@ private MAPIMessage mapiMessage;
String obtained = mapiMessage.getMessageClass(); String obtained = mapiMessage.getMessageClass();
TestCase.assertEquals("IPM.Note", obtained); TestCase.assertEquals("IPM.Note", obtained);
} }
} }