package ch.usi.inf.sp.cfg; import org.junit.jupiter.api.Test; import static org.junit.jupiter.api.Assertions.*; class ControlFlowEdgeTest { @Test void newControlFlowGraphEdge() { ControlFlowEdge e = new ControlFlowEdge("e1"); assertEquals("e1", e.getLabel()); } }