摘要: Python单元测试框架Pyunit 使用示例: 1 import unittest 2 3 class Person: 4 def age(self): 5 return 34 6 def name(self): 7 return 'bob' 8 9 class TestSequenceFunctions(unittest.TestCase):10 11 def setUp(self):12 self.man = Person()13 print 'set up now'14 ... 阅读全文
posted @ 2012-04-16 14:19 软践 阅读(3316) 评论(0) 推荐(1) 编辑