0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Laravelテストの基本

Posted at

テストクラスの置き場所

  • testsディレクトリ下
    • Feature
      • 機能テスト用
    • Unit
      • メソッド単位のテスト用
      • こっちのテストはアプリが起動されないので、DBにアクセスできない

コマンド

テストクラス作成

php artisan make:test クラス名

すべてのテストを実行

php artisan test

テストクラス実行

//Featureディレクトリに対象ファイルがある場合
php artisan test tests/Feature/テストクラス名.php

他にもtipsがありそう

参考文献

テスト: テストの準備 9.x Laravel
データベーステスト 9.x Laravel

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?