20 lines
416 B
PHP
20 lines
416 B
PHP
<?php
|
|
|
|
namespace spec\Ddeboer\DataImport\Exception;
|
|
|
|
use PhpSpec\ObjectBehavior;
|
|
|
|
class ReaderExceptionSpec extends ObjectBehavior
|
|
{
|
|
function it_is_initializable()
|
|
{
|
|
$this->shouldHaveType('Ddeboer\DataImport\Exception\ReaderException');
|
|
}
|
|
|
|
function it_is_an_exception()
|
|
{
|
|
$this->shouldHaveType('Exception');
|
|
$this->shouldImplement('Ddeboer\DataImport\Exception');
|
|
}
|
|
}
|