我正在学习Laravel上的测试,并且由于此错误,我无法继续测试Eloquent:
错误:在null上调用成员函数connection()
这是我的代码:
public function test_users_can_follow_each_other()
{
$this->userOne = User::find(1);
$this->userTwo = User::find(2);
$this->userOne->followedBy($this->userTwo->id);
$this->assertTrue($this->userTwo->isFollowedBy($this->userOne->id));
}
我也在使用特征use DatabaseTransactions;
该数据库已经在users表上创建了2条记录。我还需要配置其他东西吗,谢谢!
答案 0 :(得分:2)
替换
PHPUnit \ Framework \ TestCase
使用
Tests \ TestCase