sem.test.graph
Class GraphTest

java.lang.Object
  extended by sem.test.graph.GraphTest

public class GraphTest
extends java.lang.Object

Collection of tests for the graphs, nodes and edges.


Constructor Summary
GraphTest()
           
 
Method Summary
 void testAddEdge()
          Adding a new edge.
 void testAddEdgeStringNodeNode()
          Adding a new edge from string label.
 void testAddNode()
          Creating a new node and adding it to the graph.
 void testAddNodeString()
          Creating a new node directly from the lemma and POS, and adding it to the graph.
 void testClone()
          Cloning the graph.
 void testGetEdges()
          Getting the list of edges.
 void testGetNodes()
          Getting the list of nodes.
 void testGraph()
          Creating a new graph.
 void testPutData()
          Adding metadata.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

GraphTest

public GraphTest()
Method Detail

testGraph

public void testGraph()
Creating a new graph.


testAddNode

public void testAddNode()
Creating a new node and adding it to the graph.


testAddNodeString

public void testAddNodeString()
Creating a new node directly from the lemma and POS, and adding it to the graph.


testAddEdge

public void testAddEdge()
Adding a new edge.


testAddEdgeStringNodeNode

public void testAddEdgeStringNodeNode()
Adding a new edge from string label.


testGetNodes

public void testGetNodes()
Getting the list of nodes.


testGetEdges

public void testGetEdges()
Getting the list of edges.


testPutData

public void testPutData()
Adding metadata.


testClone

public void testClone()
Cloning the graph.