graph_index_test.cc 259 Bytes
Newer Older
Chao Ma's avatar
Chao Ma committed
1
2
/*!
 *  Copyright (c) 2019 by Contributors
3
4
 * \file graph_index_test.cc
 * \brief Test GraphIndex
Chao Ma's avatar
Chao Ma committed
5
 */
VoVAllen's avatar
VoVAllen committed
6
7
8
9
#include <gtest/gtest.h>
#include <dgl/graph.h>

TEST(GraphTest, TestNumVertices){
10
  dgl::Graph g;
VoVAllen's avatar
VoVAllen committed
11
12
13
  g.AddVertices(10);
  ASSERT_EQ(g.NumVertices(), 10);
};