package UnitTests;
import junit.framework.TestCase;
import org.junit.Assert;
import vg.core.graph.Graph;
public class GraphTest extends TestCase {
/**
* Constructor
* s - name of anyone methods of this class.
*/
public GraphTest(String s) {
super(s);
}
/**
* This method tests of creating graph.
*/
public void createGraph() {
Graph gr = new Graph();
Assert.assertTrue(gr!=null);
}
}