src/main/java/com/atlassian/uwc/converters/dokuwiki/HierarchyLinkConverterTest.java [109:116]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public void testConvertUNC() {
		String input, expected, actual;
		input = "[[\\\\path\\to\\unc\\file.jpg]]\n";
		expected = input;
		actual = tester.convertLink(input);
		assertNotNull(actual);
		assertEquals(expected, actual); 
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/atlassian/uwc/converters/trac/FilenameHierarchyLinkConverterTest.java [48:55]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public void testConvertLinks_notattachment() {
		String input, expected, actual;
		input = "[alias/with dangerous chars|^file/wouldthisevenhappen.pdf]";
		expected = input;
		actual = tester.convertLink(input);
		assertNotNull(actual);
		assertEquals(expected, actual);
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



