码迷,mamicode.com
首页 > 编程语言 > 详细

Python做单元测试小实例

时间:2016-09-28 19:41:00      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:

import sys
#先定义一个函数,这个函数是计算高*宽,并返回计算结果
def test(hight,width):
    return hight*width

#这是程序启动函数入口,给要测试的函数传两个参数(hight,width),得到一个返回结果answer。拿到这个返回结果answer,与预期结果cerrect_answer进行比较,如果一致则打印通过,不一致则打印失败。
if __name__ == ‘__main__‘:
    hight=12
    width=2
    cerrect_answer=24
    answer=test(hight,width)
    if answer==cerrect_answer:
        print ‘passed‘
    else:
        print ‘failed‘

Python做单元测试小实例

标签:

原文地址:http://www.cnblogs.com/qq738805997/p/5917482.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!