public function testCreateFromInstance()
 {
     $method = ReflectionMethod::createFromInstance(new \SplDoublyLinkedList(), 'add');
     $this->assertInstanceOf(ReflectionMethod::class, $method);
     $this->assertSame('add', $method->getName());
 }