Laravel PHPUnit在null上调用成员函数connection()

时间:2018-08-05 15:03:04

标签: laravel phpunit

我正在学习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条记录。我还需要配置其他东西吗,谢谢!

1 个答案:

答案 0 :(得分:2)

替换

PHPUnit \ Framework \ TestCase

使用

Tests \ TestCase