/**
  * Tests the setter/getter for the post-construct lifecycle callbacks.
  *
  * @return void
  */
 public function testSetGetPostConstructCallbacks()
 {
     $this->descriptor->setPostConstructCallbacks($postConstructCallbacks = array('initialize'));
     $this->assertSame($postConstructCallbacks, $this->descriptor->getPostConstructCallbacks());
 }