src/main/java/com/atlassian/uwc/ui/ConverterEngineTest.java [1123:1152]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
		page.setConvertedText(testcontent);
		tester.sendPage(page, parentid, settings);
		
		//get page
		PageForXmlRpc endPage = null;
		String id = null;
		try {
			//test space was created
			SpaceForXmlRpc space = broker.getSpace(confsettings, spacekey);
			assertNotNull(space);
			assertNotNull(space.getSpaceName());
			assertEquals(spacename, space.getSpaceName());
			assertNotNull(space.getDescription());
			assertEquals(spacedesc, space.getDescription());
			
			//test page was created
			id = broker.getPageIdFromConfluence(confsettings, spacekey, title);
			endPage = broker.getPage(confsettings, id);
			assertNotNull(endPage);
			assertEquals(title, endPage.getTitle());
			//test that content is the new content
			String newcontent = endPage.getContent();
			assertNotNull(newcontent);
			assertEquals(testcontent, newcontent);
			
		} catch (Exception e) {
			e.printStackTrace();
			fail();
		} finally {
			deletePage(id, confsettings);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/atlassian/uwc/ui/ConverterEngineTest.java [1223:1252]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
		page.setConvertedText(testcontent);
		tester.sendPage(page, parentid, settings);
		
		//get page
		PageForXmlRpc endPage = null;
		String id = null;
		try {
			//test space was created
			SpaceForXmlRpc space = broker.getSpace(confsettings, spacekey);
			assertNotNull(space);
			assertNotNull(space.getSpaceName());
			assertEquals(spacename, space.getSpaceName());
			assertNotNull(space.getDescription());
			assertEquals(spacedesc, space.getDescription());
			
			//test page was created
			id = broker.getPageIdFromConfluence(confsettings, spacekey, title);
			endPage = broker.getPage(confsettings, id);
			assertNotNull(endPage);
			assertEquals(title, endPage.getTitle());
			//test that content is the new content
			String newcontent = endPage.getContent();
			assertNotNull(newcontent);
			assertEquals(testcontent, newcontent);
			
		} catch (Exception e) {
			e.printStackTrace();
			fail();
		} finally {
			deletePage(id, confsettings);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



