final OtpErlangTuple source = (OtpErlangTuple) msg.elementAt(5);
final String module = source.elementAt(0).toString();
final String function = source.elementAt(1).toString();
final int arity = Integer.parseInt(source.elementAt(2).toString());
final TestTreeObject node = new TestTreeObject(makeTestShortDescription(module,
function, arity), TestTreeObject.FAILOURE);
node.setDescription(makeTestFullDescription(module, function, arity, description,
line, String.format("canceled: %s", reason)));
model.findNode(group).addChild(node);
}