graph_index_test.cc 260 Bytes
Newer Older
1
/**
Chao Ma's avatar
Chao Ma committed
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
#include <dgl/graph.h>
7
#include <gtest/gtest.h>
VoVAllen's avatar
VoVAllen committed
8

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