*/ class InvalidDriverExceptionSpec extends ObjectBehavior { function let() { $this->beConstructedWith('driver', 'className'); } function it_is_initializable() { $this->shouldHaveType('Sylius\Component\Resource\Exception\Driver\InvalidDriverException'); } function it_should_extends_exception() { $this->shouldHaveType('\Exception'); } }