MonoInitTest.cc 456 B

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