assureEquals("location is expected to be empty here", "", location);
assureEquals("URL is expected to be empty here", "", url);
assureEquals("Args are expected to be empty here", 0, args.length);
// and, you should be able to set properties at the data source
final XOfficeDatabaseDocument dataSourceAccess = (XOfficeDatabaseDocument) UnoRuntime.queryInterface(
XOfficeDatabaseDocument.class, databaseDoc);
final XPropertySet dsProperties = (XPropertySet) UnoRuntime.queryInterface(
XPropertySet.class, dataSourceAccess.getDataSource());
dsProperties.setPropertyValue("URL", "sdbc:embedded:hsqldb");
final String documentURL = createTempFileURL();
storeDoc.storeAsURL(documentURL, new PropertyValue[0]);