
报错如下:
At least 5 arguments expected but 1 found.
Expected arguments are:
- data file to save coverage result
- a flag to enable tracking per test coverage
- a flag to calculate coverage for unloaded classes
- a flag to use data file as initial coverage
- a flag to run coverage in sampling mode or in tracing mode otherwise
很简单啦:

需要5个参数,但是你只给了一个。
1 保存覆盖测试结果的文件
2 是否启用每个测试追踪的标准
3 用于计算已卸载类的标志
4 是否使用data文件作为初始覆盖的标志
5 是否在采样模式或者跟踪模式来运行标志
你需要测试的文件可能存在异常。测试简单的main方法应该没啥问题。