laravel fatal error for TestCase not found

前端 未结 8 1948
离开以前
离开以前 2021-02-12 13:26
http://localhost/laravel/app/tests/ExampleTest.php

if i run laravel it shows the following error

Fatal error: Class \'TestCase\' not found in D

8条回答
  •  旧时难觅i
    2021-02-12 13:40

    Check if your tests directory is listed on the classmap property of your composer.json file.

    If not add it and run composer dump-autoload.

    "autoload-dev": {
        "classmap": [
            "tests",
            "database/"
        ]
    },
    

提交回复
热议问题