/**
* A kind of smoke test that only asserts the page is rendered when first loaded
*/
public void testPageRendersOnLoad() {
final PropertyDataStoreFactory dataStoreFactory = new PropertyDataStoreFactory();
final String dataStoreFactoryDisplayName = dataStoreFactory.getDisplayName();
startPage();
tester.assertLabel("dataStoreForm:storeType", dataStoreFactoryDisplayName);
tester.assertLabel("dataStoreForm:storeTypeDescription", dataStoreFactory.getDescription());
tester.assertComponent("dataStoreForm:workspacePanel", WorkspacePanel.class);
}