摘要: [TOC] Glossary SUT SYSTEM UNDER TEST CUT CLASS UNDER TEST MUT METHOD UNDER TEST Tests without Use of Stub You do not have to use stub when there are n 阅读全文
posted @ 2016-03-06 06:48 TimeCatcher 阅读(127) 评论(0) 推荐(0)
摘要: 1 #!/usr/bin/env python 2 # encoding: utf-8 3 4 import unittest 5 6 """ 7 the simplyest way to test return value 8 No needs to use stub 9 """ 10 class 阅读全文
posted @ 2016-03-05 15:51 TimeCatcher 阅读(156) 评论(0) 推荐(0)