TEST NAME: Test Read Simple Table
OBJECTIVE: Test that HDF can read a document containing a simple table (simple-table.doc).
SUCCESS: HDF reads the document. Matches values in their particular positions.
FAILURE: HDF does not read the document or excepts. HDF cannot identify values
in the document in their known positions.
String filename = System.getProperty( "HDF.testdata.path" );
filename = filename + "/simple-table.doc";
FileInputStream stream = new FileInputStream( filename );
HDFDocument empty = new HDFDocument( stream );
stream.close();