nittest单元测试框架不仅可以适用于单元测试,还可以适用WEB自动化测试用例的开发与执行,该测试框架可组织执行测试用例,并且提供了丰富的断言方法,判断测试用例是否通过,最终生成测试结果。今天笔者就总结下如何使用unittest单元测试框架来进行WEB自动化测试。
题目:
编写一个名为Employee的类,其方法__init__()接受名、姓和年薪,并将它们都存储在属性中。编写一个名为give_raise()的方法,它默认将年薪增加5000美元,但也能够接受其他的年薪增加量。
为Employee编写一个测试用例,其中包含两个测试方法:test_give_default_raise()和test_give_custom_raise()。使用方法setUp(),以免在每个测试方法中都创建新的雇员实例。运行这个测试用例,确认两个测试都通过了。
1
2
3
4
5
6
7
8
9
|
employ.py
待测试的类
class Employee():
def __init__( self ,first_name,last_name,salary):
self .first_name = first_name
self .last_name = last_name
self .salary = salary
def give_raise( self ,default = 5000 ):
return int ( self .salary) + default
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
test_employ.py
测试类
# coding=utf-8
import unittest
from employ import Employee
class TestEmploy(unittest.TestCase):
def setUp( self ):
self .people = Employee( "ZHU" , "Fangya" , 20000 )
self .salary = [ 25000 , 30000 ]
def test_give_default_raise( self ):
self .assertEqual( self .people.give_raise(), self .salary[ 0 ])
def test_give_custome_raise( self ):
self .default = 10000
self .assertEqual( self .people.give_raise(default = 10000 ), self .salary[ 1 ])
if __name__ = = "__main__" :
unittest.main()
|
运行结果
1
2
3
4
5
|
Done: 2 of 2 ( 0.137s )
C:\Python27\python.exe "C:\Program Files (x86)\JetBrains\PyCharm 4.0.6\helpers\pycharm\utrunner.py" C:\Users\waiwai\PycharmProjects\untitled2\test_employ.py true
Testing started at 16 : 03 ...
Process finished with exit code 0
|
总结
以上就是本文关于python的unittest测试类代码实例的全部内容,希望对大家有所帮助。感兴趣的朋友可以继续参阅本站其他相关专题,如有不足之处,欢迎留言指出。感谢朋友们对本站的支持!
原文链接:http://blog.csdn.net/waiwai3/article/details/77575427