Skip to content
Mitsuru Mutaguchi edited this page Mar 14, 2022 · 12 revisions

phpunitは、テストツールです。

前作業

Connect-CMSの最新版にアップデートする

Download the latest library using composer(composerで利用ライブラリの最新をダウンロード)

php -d allow_url_fopen=1 composer.phar install
// or 
composer install

phpunit実行

// プロジェクトルートへ移動
cd /path/to/laravel

// phpunit実行
./vendor/bin/phpunit

// composerコマンドでphpunit実行(上記と同等)
composer phpunit
// or
php composer.phar phpunit

// composerコマンドで任意のファイルでphpunit実行(下記パス指定は例です。任意に変更してください)
composer phpunit -- -v tests\Unit\Migration\MigrationTraitTest.php

テストケースディレクトリ

参考リンク

Clone this wiki locally