27 lines
511 B
C++
27 lines
511 B
C++
/**
|
|
* @file dmnode.cpp
|
|
* @author slguan (slguan@taosdata.com)
|
|
* @brief DNODE module mnode tests
|
|
* @version 1.0
|
|
* @date 2022-01-07
|
|
*
|
|
* @copyright Copyright (c) 2022
|
|
*
|
|
*/
|
|
|
|
#include "sut.h"
|
|
|
|
class DndTestMnode : public ::testing::Test {
|
|
protected:
|
|
static void SetUpTestSuite() { test.Init("/tmp/dnode_test_mnode", 9113); }
|
|
static void TearDownTestSuite() { test.Cleanup(); }
|
|
|
|
static Testbase test;
|
|
|
|
public:
|
|
void SetUp() override {}
|
|
void TearDown() override {}
|
|
};
|
|
|
|
Testbase DndTestMnode::test;
|