/**
* Test to see if we can read the Date Chunk with OutlookTextExtractor.
* TODO Work out why the Fri 22nd vs Monday 25th problem is occurring and fix
*/
public void DISABLEDtestReadMessageDateSucceedsWithOutlookTextExtractor() {
OutlookTextExtactor ext = new OutlookTextExtactor(mapiMessageSucceeds);
String text = ext.getText();
assertContains(text, "Date: Fri, 22 Jun 2012 21:32:54\n");
}