test.py 660 B

123456789101112131415161718192021222324252627
  1. # -*- coding: utf-8 -*-
  2. """
  3. -------------------------------------------------
  4. File Name: test.py
  5. Description :
  6. Author : JHao
  7. date: 2017/3/7
  8. -------------------------------------------------
  9. Change Activity:
  10. 2017/3/7:
  11. -------------------------------------------------
  12. """
  13. __author__ = 'JHao'
  14. from test import testConfigHandler
  15. from test import testLogHandler
  16. from test import testDbClient
  17. if __name__ == '__main__':
  18. print("ConfigHandler:")
  19. testConfigHandler.testConfig()
  20. print("LogHandler:")
  21. testLogHandler.testLogHandler()
  22. print("DbClient:")
  23. testDbClient.testDbClient()