ErrorException : Use of undefined constant LARAVEL_START - assumed 'LARAVEL_START'

laravel在运行测试用例的时候报了这样一个错误
undefined constant LARAVEL_START
就是说找不到这个常量,请给这个常量赋值
然后看一下artisan的代码

#!/usr/bin/env php

发现它require 了autoload.php
在代码中加上一下代码就好了。***是该文件和bootstrap的相对路径

require *****.'/bootstrap/autoload.php';

你可能感兴趣的:(php)