2016-12-18 8 views
1

私はコードテストで単体テストのコードカバレッジを取得しようとしています。空のコードカバレッジ

私はvendor/bin/codecept run unit --coverageをやっているときに、それがいることを表示します。

Classes: 0.00% (0/1) 
    Methods: 0.00% (0/3) 
    Lines: 0.00% (0/28) 

私はXdebugをここcoverage_enable=On

と一緒にインストールされている

3の上には、私のcodeception.ymlである1つの方法をテストしたが、設定ファイル:

actor: Tester 
paths: 
    tests: tests 
    log: tests/_output 
    data: tests/_data 
    support: tests/_support 
    envs: tests/_envs 
settings: 
    bootstrap: _bootstrap.php 
    colors: true 
    memory_limit: 1024M 
extensions: 
    enabled: 
     - Codeception\Extension\RunFailed 
modules: 
    config: 
     Db: 
      dsn: '' 
      user: '' 
      password: '' 
      dump: tests/_data/dump.sql 
coverage: 
    enable: true 
    remote: false 
    include: 
     - Simplifier/* 
    exclude: 
     - vendor/* 

私はSimplifier/Routing.phpをテストしようとしています

テストはOKですが、私の適用範囲が間違っています。

任意のアイデアなぜですか?

ありがとうございました。

答えて

関連する問題