public void testGetAllInformation()throws IOException, ParsingException
{
Document doc = XmlUtil.loadDocument(WsInformation.class.getResource("/test/resources/ws/ws-2.xml"));
WsInformation ws = new WsInformation(doc);
final List<List<String>> List = new LinkedList<List<String>>();
List.add(MULE_DESCRIPTION_3);
List.add(MULE_DESCRIPTION_4);
final List<List<String>> expectedList = new LinkedList<List<String>>();
final List<String> l1 = Arrays.asList("name1", "endpoint1", "containername1", "containeradress1", "path1", null);
final List<String> l2 = Arrays.asList("name2", "endpoint2", "containername2", "containeradress2", "path2", "description2");
expectedList.add(l1);
expectedList.add(l2);
assertEquals(expectedList, ws.getAllInformation(List));
}