Domain\Repositories\BaseRepositoryTest::test_make_model PHP Method

test_make_model() public method

public test_make_model ( )
    public function test_make_model()
    {
        $repository = App::make(Repo::class);
        $this->assertInstanceOf(BaseRepository::class, $repository);
        $this->assertInstanceOf(Model::class, $repository->makeModel());
        $this->assertTrue($repository->getModel() instanceof Model);
    }