如何使用pytest制作测试功能

时间:2016-05-05 04:54:00

标签: python python-2.7 pytest

我不知道如何制作测试功能。 我有这个功能

import pytest

def added(a, b, c):
    d = b + c
    e = a + c
    f = a + b
    return (d, e, f)

added(4,6,7)

如何为此函数创建test_function。

感谢您提前提供任何帮助

1 个答案:

答案 0 :(得分:1)

试试这个:

def test_added():
    assert added(4, 6, 7) == (13, 11, 10)

然后执行测试功能。如果所有测试都是正确的,你应该得到类似的东西:

1 passed in x.xx seconds

查看docs以获取更多帮助。