当报如下错误: TypeError: 'ModuleImportFailure' object is not iterable 或者 TypeError: '_FailedTest' object is not iterable时, 表示测试用例在运行时出现了错误,可以具体python运行某个测试用例,比如有一次错误的原因是因为缺了XXXX包,但这个错误不会直接暴露出来. PS: 1.unittest是python的标准库 2.正常情况下可以单独执行一个函数(此时运行标志为:),如果不行重启下p…
有时候由于公司网络或其它原因,无法采用maven,这时ant是一个比较理想的选择.以下是以ant为例,搭建一个测试框架 项目结构如下图: build.properties代码如下: # The source code for the examples can be found in this directory src.dir=src/main/java test.dir=src/test/java # The path of the jar jar.dir=lib # Classes gene…