*/
public static Kam createKam(final KamInfo testKamInfo,
final TestKamNode[] testKamNodes,
final TestKamEdge[] testKamEdges) {
if (testKamNodes == null) {
throw new InvalidArgument("testKamNodes", testKamNodes);
}
if (testKamEdges == null) {
throw new InvalidArgument("testKamEdges", testKamEdges);
}
KamImpl testKAM = new KamImpl(testKamInfo);
Map<TestKamNode, KamNode> newNodes =