tsdbTests.cpp 199 字节
Newer Older
H
more  
hzcheng 已提交
1 2 3 4 5 6 7 8
#include <gtest/gtest.h>
#include <stdlib.h>

#include "tsdb.h"

TEST(TsdbTest, createTsdbRepo) {
    STSDBCfg *pCfg = (STSDBCfg *)malloc(sizeof(STSDBCfg));

H
more  
hzcheng 已提交
9
    free(pCfg);
H
more  
hzcheng 已提交
10

H
more  
hzcheng 已提交
11
    ASSERT_EQ(1, 2/2);
H
more  
hzcheng 已提交
12
}