Example #1
0
 public void EachTableHasVertex(DataSet dataSource)
 {
     foreach (DataTable table in dataSource.Tables)
     {
         Assert.IsNotNull(graph.GetVertex(table),
                          "The table {0} was not found in the graph", table.TableName);
     }
 }