algorithms-for-computing-li.../src/test/java/Model/DoublyConnectedEdgeListTest...

35 lines
656 B
Java

package Model;
import org.junit.Before;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* Implementierung verschiedener Algorithmen zur Berechnung von Ausgleichsgeraden.
*
* @Author: Armin Wolf
* @Email: a_wolf28@uni-muenster.de
* @Date: 30.05.2017.
*/
public class DoublyConnectedEdgeListTest {
private static DoublyConnectedEdgeList dcel;
private static Node v1, v2, v3 ,v4, v5;
private static Edge e1, e2, e3, e4, e5, e6;
private static Face f1, f2, f3;
@Before
public void setUp() throws Exception {
dcel = new DoublyConnectedEdgeList();
}
@Test
public void testCases(){
}
}