当我在 laravel 的测试文件中有多个测试并执行它们时,我得到:
Fatal error: Cannot redeclare nameSort() (previously declared in C:\wamp\www\project\app\start\global.php:110) in C:\wamp\www\project\app\start\global.php on line 112
即使这是我的测试文件也是如此:
class DealControllerTest extends TestCase {
public function testIndex()
{
$this->assertTrue(true);
}
public function testApiKey()
{
$this->assertTrue(true);
}
}