Domain\Employee\EmployeeRepositoryTest::test_all PHP Метод

test_all() публичный Метод

public test_all ( )
    public function test_all()
    {
        $repo = App::make(EmployeeRepository::class);
        factory(Employee::class)->create();
        $all = $repo->all();
        $this->assertInstanceOf(LengthAwarePaginator::class, $all);
        $this->assertInstanceOf(Employee::class, $all->first());
    }