/trunk/src/kangmodb/testClassLogApplyer.cpp
C++ | 39 lines | 13 code | 8 blank | 18 comment | 0 complexity | d20037678720526d5cead2871e3ff4c0 MD5 | raw file
Possible License(s): BSD-3-Clause
1/* 2 * testClassLogApplyer.cpp 3 * kangmodb 4 * 5 * Created by 강모 김 on 11. 4. 25.. 6 * Copyright 2011 강모소프트. All rights reserved. 7 * 8 */ 9 10 11#include "gtest/gtest.h" 12 13#include "kangmodb.h" 14#include "testCommon.h" 15 16/** @brief Test stgLogApplyer class 17 */ 18class ClassLogApplyerTest : public testing::Test { 19protected: // You should make the members protected s.t. they can be 20 // accessed from sub-classes. 21 22 // virtual void SetUp() will be called before each test is run. You 23 // should define it if you need to initialize the varaibles. 24 // Otherwise, this can be skipped. 25 virtual void SetUp() { 26 } 27 28 // virtual void TearDown() will be called after each test is run. 29 // You should define it if there is cleanup work to do. Otherwise, 30 // you don't have to provide it. 31 // 32 virtual void TearDown() { 33 } 34protected: 35}; 36 37 38TEST_F(ClassLogApplyerTest, DISABLED_Feature) { 39}