最近打算要用Codeception 做测试
我在yaml 设定档有 用到Db 模组
Db 的设定档如下
Db:
dsn: 'mysql:host=192.168.1.1;dbname=testdb'
user: 'root'
password: 'pass word'
dump: 'tests/_data/dumper.sql'
populate: true
cleanup: true
现在的问题是,开始测试的时候,的确是会执行dumper.sql的语法
可是问题是,我要怎么在测试结束的时候,执行清除资料
是要另外写test helper 去执行吗
谢谢回复