/trunk/src/kangmodb/testClassLogApplyer.cpp

# · C++ · 39 lines · 13 code · 8 blank · 18 comment · 0 complexity · d20037678720526d5cead2871e3ff4c0 MD5 · raw file

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