laravel fatal error for TestCase not found

前端 未结 8 1949
离开以前
离开以前 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条回答
  •  佛祖请我去吃肉
    2021-02-12 13:42

    In my case, i noticed that my root folder not contained the phpunit.xml file.

    Solve it including the following code in phpunit.xml at the root folder:

    
    
        
            
                ./app/tests/
            
        
    
    

提交回复
热议问题