| 1 | <?php |
||
| 10 | class HttpApplicationSpec extends ObjectBehavior |
||
| 11 | { |
||
| 12 | function let(Kernel $kernel, Container $container) |
||
| 13 | { |
||
| 14 | $kernel->boot()->willReturn($container); |
||
| 15 | $this->beConstructedWith($kernel); |
||
| 16 | } |
||
| 17 | |||
| 18 | function it_is_initializable() |
||
| 19 | { |
||
| 20 | $this->shouldHaveType(HttpApplication::class); |
||
| 21 | } |
||
| 22 | } |
||
| 23 |