测试步骤
1. 导入unittest模块
import unittest
2. 编写测试的类继承unittest.TestCase
class Tester(unittest.TestCase)
3. 编写测试的方法必须以test开头
def test_add(self)
def test_sub(self)
4.使用TestCase class提供的方法测试功能点
5.调用unittest.main()方法运行所有以test开头的方法
复制代码 代码如下:
if name == 'main':
unittest.main()
实例如下
被测试类
复制代码 代码如下:
class Computer(object):
@staticmethod
def add(a, b):
return a + b;
@staticmethod
def sub(a, b):
return a - b;
Copyright© 2013-2020
All Rights Reserved 京ICP备2023019179号-8