向服务提交查询后,我得到了字典/列表,并希望确保它不为空。我使用的是Python 2.7。
我很惊讶我没有assertEmpty
为unittest.TestCase
类实例找到任何方法。
现有的替代方案,例如:
self.assertTrue(bool(d))
和
self.assertNotEqual(d,{})
和
self.assertGreater(len(d),0)
只是看起来不正确。
Python unittest框架中缺少这种方法吗?如果是,那么断言Iterable不为空的最Python方式是什么?