| 123456789101112131415161718192021222324252627 |
- # -*- coding: utf-8 -*-
- """
- -------------------------------------------------
- File Name: test.py
- Description :
- Author : JHao
- date: 2017/3/7
- -------------------------------------------------
- Change Activity:
- 2017/3/7:
- -------------------------------------------------
- """
- __author__ = 'JHao'
- from test import testConfigHandler
- from test import testLogHandler
- from test import testDbClient
- if __name__ == '__main__':
- print("ConfigHandler:")
- testConfigHandler.testConfig()
- print("LogHandler:")
- testLogHandler.testLogHandler()
- print("DbClient:")
- testDbClient.testDbClient()
|