/**
  * Checks if the implementsInterface() method works as expected.
  *
  * @return void
  */
 public function testImplementsInterfaceWithNotImplementedInterface()
 {
     $this->assertFalse($this->reflectionClass->implementsInterface('\\Serializable'));
 }