/**
* Creates an instance of each possible model element and calls createViewItem with it to check if the correct ViewModel element is created from it
*/
@Test
public void testCreateViewItem() {
networkView = new GraphController(null);
// networkView.onModelCleared();
Assert.assertEquals(0, networkView.getGraphModel().items().length);
testAddModelElements();
testRemoveModelElements();
networkView = null;