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ですが、私の適用範囲が間違っています。
任意のアイデアなぜですか?
ありがとうございました。
真剣に?私はとても混乱している、あなたに感謝ナクティバルダ – Boris