python – unittest.TestCase.assertEqual的参数顺序

前端之家收集整理的这篇文章主要介绍了python – unittest.TestCase.assertEqual的参数顺序前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

是assertEqual(actual,expected)还是assertEqual(expected,actual)?

一方面,我看到很多代码使用assertEqual(actual,expected).这包括examples in the unittest docsexamples in the Django docs.

但是,这个测试assertEqual(‘foo’,’bar’)给了我输出

- foo
+ bar

这恰好与使用assertEquals(‘foo’,’bar’)的PHPUnit测试相同;

-'foo'
+'bar'

并且PHPUnit将$expected作为第一个参数,然后是$actual.这种差异也是我期望的,实际的.

所有这些Python代码我看到做错了吗?

我检查了unittest方法的定义,尽管它有非常有用的第一个,第二个参数名称.

最佳答案
根据assertEqual文件

Test that first and second are equal. If the values do not compare equal,the test will fail.

因此,您可以将预期和实际放在任何地方,它将返回相同的结果.但通常的做法是将实际结果用作第一个参数,将预期结果用作第二个参数.它也在Python 3’s Unittest Example中得到证明:

s = 'hello world'
self.assertEqual(s.split(),['hello','world'])

猜你在找的Python相关文章