/*! * Copyright (c) 2019 by Contributors * \file graph_index_test.cc * \brief Test GraphIndex */ #include #include TEST(GraphTest, TestNumVertices){ dgl::Graph g(false); g.AddVertices(10); ASSERT_EQ(g.NumVertices(), 10); };