Skip to content

Commit

Permalink
stash kill query test
Browse files Browse the repository at this point in the history
  • Loading branch information
cangfengzhs committed Aug 18, 2021
1 parent 307c5fc commit 9bf3b16
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions src/storage/test/KillQueryTest.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
#include <gtest/gtest.h>

#include "common/fs/TempDir.h"
#include "mock/MockCluster.h"
namespace nebula {
/* Copyright (c) 2020 vesoft inc. All rights reserved.
*
* This source code is licensed under Apache 2.0 License,
* attached with Common Clause Condition 1.0, found in the LICENSES directory.
*/
namespace storage {

TEST(KillQuery, GetNeighbors) {
fs::TempDir rootPath("/tmp/KVSimpleTest.XXXXXX");
mock::MockCluster cluster;
cluster.initStorageKV(rootPath.path());
}
TEST(KillQuery, LookUpEdge) {}
TEST(KillQuery, LookUpVertex) {}
} // namespace storage
} // namespace nebula

int main(int argc, char** argv) {
testing::InitGoogleTest(&argc, argv);
folly::init(&argc, &argv, true);
google::SetStderrLogging(google::INFO);
return RUN_ALL_TESTS();
}

0 comments on commit 9bf3b16

Please sign in to comment.