src/main/java/com/atlassian/uwc/converters/xwiki/LinkConverterTest.java [147:154]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public void testConvertLinks1() {
		String input, expected, actual;
		input = "[alias|virtual:Home#TestSection>_blank]";
		expected = "{link-window:virtual:Home#TestSection}alias{link-window}";
		actual = tester.convertLinks(input);
		assertNotNull(actual);
		assertEquals(expected, actual);
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/atlassian/uwc/converters/sharepoint/LinkConverterTest.java [318:325]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public void testConverLinks4() {
		String input, expected, actual;
		input = "<html><a id=\"OLE_LINK1\" name=\"OLE_LINK1\" shape=\"rect\"/></html>";
		expected = "<html>{anchor:OLE_LINK1}</html>";
		actual = tester.convertLinks(input);
		assertNotNull(actual);
		assertEquals(expected, actual);
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



