chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 13:35:51 +08:00
commit c36a561cd8
2172 changed files with 455595 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
/**
* Copyright (c) 2019 by Contributors
* @file graph_index_test.cc
* @brief Test GraphIndex
*/
#include <dgl/graph.h>
#include <gtest/gtest.h>
TEST(GraphTest, TestNumVertices) {
dgl::Graph g;
g.AddVertices(10);
ASSERT_EQ(g.NumVertices(), 10);
};