node.desc = "(Lmy/Service;Ljava/util/Map;)V";
assertEquals("my.Service", getMethodIdentifier(node));
}
public void testSpecificationRecognizedWithDictionary() throws Exception {
MethodNode node = new MethodNode();
node.name = "handle";
node.desc = "(Lmy/Service;Ljava/util/Dictionary;)V";
assertEquals("my.Service", getMethodIdentifier(node));
}