ClassEditPage cep = new ClassEditPage();
cep.switchToEdit("Test", "EditObjectsTestClass");
cep.addProperty("prop", "com.xpn.xwiki.objects.classes.DBListClass");
cep.getDatabaseListClassEditElement("prop").setHibernateQuery(
"select doc.fullName from XWikiDocument doc where doc.space = 'Test'");
cep.clickSaveAndView();
// Create a second page to hold the Object and set its content
WikiEditPage wep = new WikiEditPage();
wep.switchToEdit("Test", "EditObjectsTestObject");
wep.setContent("this is the content");