Domain\Repositories\BaseRepositoryTest::test_store_with_empty_fillable PHP Method

test_store_with_empty_fillable() public method

    public function test_store_with_empty_fillable()
    {
        $repository = App::make(Repo::class);
        $data = ['field' => 'teste'];
        $error = m::mock(RepositoryException::class);
        $this->setExpectedException(RepositoryException::class);
        $repository->store($data);
    }