| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 12 | 
| Code Lines | 7 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 18 | 	public function testCanConstruct() { | 
            ||
| 19 | |||
| 20 | $this->assertInstanceOf(  | 
            ||
| 21 | '\Onoi\CallbackContainer\Exception\ServiceTypeMismatchException',  | 
            ||
| 22 | new ServiceTypeMismatchException( 'Foo', 'Bar', 'Foobar' )  | 
            ||
| 23 | );  | 
            ||
| 24 | |||
| 25 | $this->assertInstanceOf(  | 
            ||
| 26 | '\RuntimeException',  | 
            ||
| 27 | new ServiceTypeMismatchException( 'Foo', 'Bar', 'Foobar' )  | 
            ||
| 28 | );  | 
            ||
| 29 | }  | 
            ||
| 30 | |||
| 32 |