public function testIsThrowableReturnsTrueForError()
 {
     if (version_compare(PHP_VERSION, '7.0.0', '<')) {
         $this->markTestSkipped('PHP Versions >= 7');
     }
     $this->assertTrue(ThrowableUtilities::isThrowable($this->getMock(\Error::class)));
 }