laravel phpunit phpunit


public function testNewUserRegistration()
{
$this->visit( /register )
->type( Taylor name )
->check( terms )
->press( Register

  2016-10-24 08:41:10

laravelでのテスト phpunit phpunit

phpunitからのテスト実行 プロジェクト直下から実行する

¥htdocs¥nacagacco>phpunit .¥tests¥UserTest
PHPUnit 4.8.27 by Sebastian Bergmann and contributors.

Time: 8.28 seconds Memory:

  2016-10-11 02:07:17

phpunit phpunit

composer.jsonで、本番環境に必要ないのは
require-dev に記述する

続いてcomposer.jsonを作成します。PHPUnitは、本番環境の動作に必要無いのでreuqire-devに指定しましょう。
{
name : hogehoge/fugafuga
autoload : &

  2016-10-3 09:57:38