src/main/java/com/atlassian/uwc/converters/socialtext/TableConverterTest.java [87:105]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public void testConvertTables_lists() {
		String input, expected, actual;
		input = "| \n" + 
				"* one\n" + 
				"* two\n" + 
				"* three | \n" + 
				"# one\n" + 
				"# two\n" + 
				"# three | |\n" + 
				"";
		expected = "| * one\n" + 
				"* two\n" + 
				"* three | # one\n" + 
				"# two\n" + 
				"# three | |\n";
		actual = tester.convertTables(input);
		assertNotNull(actual);
		assertEquals(expected, actual);
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/atlassian/uwc/converters/sharepoint/TableConverterTest.java [47:65]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public void testConvertTables3() { //handle [col|row]spans
		String input, expected, actual;
		input = "<html>" +
				"<table><tbody><tr><td rowspan=\"1\" colspan=\"1\">r1c1</td><td colspan=\"2\" rowspan=\"1\">colspan -\n" + 
				"r1c2</td></tr><tr><td rowspan=\"1\" colspan=\"1\">r2c1</td><td rowspan=\"2\" colspan=\"1\">r2c2 -\n" + 
				"rowspan\n" + 
				"</td><td rowspan=\"1\" colspan=\"1\">r2c3\n" + 
				"</td></tr><tr><td colspan=\"1\" rowspan=\"1\">r3c1</td><td colspan=\"1\" rowspan=\"1\">r3c3\n" + 
				"</td></tr></tbody></table>\n" + 
				"</html>";
		expected = "<html>\n" +
				"| r1c1 | colspan -\\\\r1c2 |\n" + 
				"| r2c1 | r2c2 -\\\\rowspan | r2c3 |\n" + 
				"| r3c1 | r3c3 |\n" + 
				"</html>";
		actual = tester.convertTables(input);
		assertNotNull(actual);
		assertEquals(expected, actual);
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



