Manual:$wgParserTestFiles

This page is a translated version of the page Manual:$wgParserTestFiles and the translation is 69% complete.
プロファイリング、テスト、デバッグ: $wgParserTestFiles
Parser test suite files to be run by parserTests.php.
導入されたバージョン:1.9.0 (r17534)
廃止予定になったバージョン:1.30.0 (Gerrit change 363961; git #9081dd12)
除去されたバージョン:1.40.0 (Gerrit change 842007; git #4cb3957c)
許容される値:(文字列の配列)
既定値:(下記参照)

詳細

Parser test suite files to be run by parserTests.php when no specific filename is passed to it.

拡張機能が、自身のテストをこの配列に追加する場合があります。サイト ローカルのテストを LocalSettings.php 経由で追加することもできます。

絶対パスを使用してください。

既定値

MediaWiki バージョン:
1.36
$wgParserTestFiles = [];
MediaWiki バージョン:
1.18 – 1.35
$wgParserTestFiles = [
	"$IP/tests/parser/parserTests.txt",
	"$IP/tests/parser/extraParserTests.txt"
];
MediaWiki バージョン:
1.17
$wgParserTestFiles = array(
	"$IP/maintenance/tests/parser/parserTests.txt",
	"$IP/maintenance/tests/parser/ExtraParserTests.txt"
);
MediaWiki バージョン:
1.9 – 1.16
$wgParserTestFiles = array(
	"$IP/maintenance/tests/parser/parserTests.txt",
);

廃止予定

This variable is deprecated with this change. Instead, all *.txt files in an extension's tests/parser/ directory will be auto-discovered.

関連項目