Python 单元测试简单实践
unittest
参考链接: https://docs.python.org/2.7/library/unittest.html
简单例子
1 | import unittest |
nosetests
http://nose.readthedocs.io/en/latest/
1 | ## 安装 nosetests |
简单使用
1 | nosetests -s |
参考链接: https://docs.python.org/2.7/library/unittest.html
简单例子
1 | import unittest |
http://nose.readthedocs.io/en/latest/
1 | ## 安装 nosetests |
简单使用
1 | nosetests -s |