15 lines
296 B
Java
15 lines
296 B
Java
|
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());
|
||
|
}
|
||
|
|
||
|
}
|