我有一些团结正在做类似的事情:
_files = ('test1.txt','test2.txt'......)
setUp(){
//create test files
for f in _files:
f = open(f, 'w')
f.close()
}
tearDown(){
for f in _files:
if os.path.exists(f):
os.remove(f)
}
但是有些人告诉我,在 unitest 中执行 I/O 不是一个好习惯,是真的吗?