import com.pcbje.maltegoimporter.model.impl.MaltegoNodeModel;
public class MaltegoEdgeModelTest {
@Test
public void testThatMaltegoEdgeColorIsSet() {
MaltegoEdgeModel edge = new MaltegoEdgeModel(new MaltegoNodeModel(
"Person", "a"), new MaltegoNodeModel("Person", "b"), "edgelabel");
assertEquals("edgelabel", edge.getProperties().get("Label").getValue());
assertEquals("8421505", edge.getProperties().get("Color").getValue());
}