/trunk/src/kangmodb/testClassLogApplyer.cpp
# · C++ · 39 lines · 13 code · 8 blank · 18 comment · 0 complexity · d20037678720526d5cead2871e3ff4c0 MD5 · raw file
- /*
- * testClassLogApplyer.cpp
- * kangmodb
- *
- * Created by 강모 김 on 11. 4. 25..
- * Copyright 2011 강모소프트. All rights reserved.
- *
- */
- #include "gtest/gtest.h"
- #include "kangmodb.h"
- #include "testCommon.h"
- /** @brief Test stgLogApplyer class
- */
- class ClassLogApplyerTest : public testing::Test {
- protected: // You should make the members protected s.t. they can be
- // accessed from sub-classes.
-
- // virtual void SetUp() will be called before each test is run. You
- // should define it if you need to initialize the varaibles.
- // Otherwise, this can be skipped.
- virtual void SetUp() {
- }
-
- // virtual void TearDown() will be called after each test is run.
- // You should define it if there is cleanup work to do. Otherwise,
- // you don't have to provide it.
- //
- virtual void TearDown() {
- }
- protected:
- };
- TEST_F(ClassLogApplyerTest, DISABLED_Feature) {
- }