graph_index_test.cc 164 Bytes
Newer Older
VoVAllen's avatar
VoVAllen committed
1
2
3
4
5
6
7
8
#include <gtest/gtest.h>
#include <dgl/graph.h>

TEST(GraphTest, TestNumVertices){
  dgl::Graph g(false);
  g.AddVertices(10);
  ASSERT_EQ(g.NumVertices(), 10);
};