1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- namespace spec\Sylius\Component\Resource\Exception\Driver;
- use PhpSpec\ObjectBehavior;
- 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');
- }
- }
|