是assertEqual(actual,expected)还是assertEqual(expected,actual)?
一方面,我看到很多代码使用assertEqual(actual,expected).这包括examples in the unittest docs和examples in the Django docs.
但是,这个测试assertEqual(‘foo’,’bar’)给了我输出
- foo
+ bar
这恰好与使用assertEquals(‘foo’,’bar’)的PHPUnit测试相同;
-'foo'
+'bar'
并且PHPUnit将$expected作为第一个参数,然后是$actual.这种差异也是我期望的,实际的.
所有这些Python代码我看到做错了吗?
最佳答案
根据
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'])