| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 6 | 
| Code Lines | 4 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 13 | public function testReflectionException() | ||
| 14 |     { | ||
| 15 | $command = $this->getMockForAbstractClass(CommandInterface::class); | ||
| 16 |         $dynamoDbException = new DynamoDbException('test', $command); | ||
| 17 | $exception = ExceptionFactory::factory($dynamoDbException); | ||
| 18 | $this->assertInstanceOf(Exception::class, $exception); | ||
| 19 | } | ||
| 21 |