:return:
()
| 17 | |
| 18 | |
| 19 | def testConfig(): |
| 20 | """ |
| 21 | :return: |
| 22 | """ |
| 23 | conf = ConfigHandler() |
| 24 | print(conf.dbConn) |
| 25 | print(conf.serverPort) |
| 26 | print(conf.serverHost) |
| 27 | print(conf.tableName) |
| 28 | assert isinstance(conf.fetchers, list) |
| 29 | print(conf.fetchers) |
| 30 | |
| 31 | for _ in range(2): |
| 32 | print(conf.fetchers) |
| 33 | sleep(5) |
| 34 | |
| 35 | |
| 36 | if __name__ == '__main__': |
no test coverage detected