摘要:
[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 阅读全文
摘要:
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 阅读全文