Haxe的代码覆盖率

时间:2017-12-30 16:29:00

标签: code-coverage haxe

我们假设我有这样的单元测试:

import haxe.unit.TestRunner;
import haxe.unit.TestCase;

class MyTests extends haxe.unit.TestCase {
    public function testSomething():Void {
        // ...
    }
    public function testSomethingElse():Void {
        // ...
    }
    public static function main():Void {
        var tr = new TestRunner();
        tr.add(new MyTests());
        tr.run();
    }
}

现在,在运行我的测试之后,我想分析,我的代码的哪些行已经过测试,哪些不是(代码覆盖)......或者至少看看在测试运行期间某个类的哪些函数已被执行(只是防止我没有忘记测试任何功能)。我怎么能这样做?

1 个答案:

答案 0 :(得分:2)

MCover目前是目前唯一真正的选择。还有一个叫coverme,但它还不适合公众使用。