InvCatalogImpl cat = fac.readXML( catAsString.toString(), catURI );
InvDatasetImpl ds = (InvDatasetImpl) cat.getDatasets().get( 0 );
double d = ds.getDataSize();
fac.writeXML(cat, System.out);
assertTrue( "Size of data <" + d + "> not as expected <" + sizeBytes + ">.", Misc.closeEnough(d, sizeBytes));
}
}