/** * @file dqnode.cpp * @author slguan (slguan@taosdata.com) * @brief DNODE module qnode tests * @version 1.0 * @date 2022-01-05 * * @copyright Copyright (c) 2022 * */ #include "sut.h" class DndTestQnode : public ::testing::Test { protected: static void SetUpTestSuite() { test.Init("/tmp/dnode_test_qnode", 9111); } static void TearDownTestSuite() { test.Cleanup(); } static Testbase test; public: void SetUp() override {} void TearDown() override {} }; Testbase DndTestQnode::test;