Domain\Repositories\BaseRepositoryTest::test_store_failed PHP Method

test_store_failed() public method

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