MonoInitTest.cc 598 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. // Copyright: All Rights Reserved
  2. // Author: egametang@gmail.com (tanghai)
  3. #include <gtest/gtest.h>
  4. #include <glog/logging.h>
  5. #include <gflags/gflags.h>
  6. #include "Mono/MonoInit.h"
  7. namespace Egametang {
  8. class MonoInitTest: public testing::Test
  9. {
  10. protected:
  11. int port;
  12. public:
  13. MonoInitTest(): port(10002)
  14. {
  15. }
  16. virtual ~MonoInitTest()
  17. {
  18. }
  19. };
  20. TEST_F(MonoInitTest, Echo)
  21. {
  22. }
  23. } // namespace Egametang
  24. int main(int argc, char* argv[])
  25. {
  26. testing::InitGoogleTest(&argc, argv);
  27. google::InitGoogleLogging(argv[0]);
  28. google::ParseCommandLineFlags(&argc, &argv, true);
  29. return RUN_ALL_TESTS();
  30. }