* Verify that the data fields may be reordered if a header is present.
*/
public void testParseSimpleTableWithDifferentHeaderOrder() throws Exception
{
TransferObject record;
TransferObject root = m_parser.parse(new StringInput(
"familyName,Phone1_location,Phone1_number,location,number,balance,firstName,age\n" +
"Doe,,,,,108,John,42\n" +
"Zhang,cell,0932077773,,,,Hui Mei,37\n" +
"Lin,,,test,012345678,,Jack,26\n"
), m_simple_message);