Beispiel #1
0
 public function setUp()
 {
     parent::setUp();
     $rows = $this->query->execute()->getRows();
     $rows->rewind();
     $this->row = $rows->current();
     $this->assertInstanceOf('PHPCR\\Query\\RowInterface', $this->row);
 }
 public function setUp()
 {
     parent::setUp();
     $this->nodeIterator = $this->query->execute()->getNodes();
 }
 public function setUp()
 {
     parent::setUp();
     $this->rowIterator = $this->query->execute()->getRows();
     $this->assertCount(5, $this->rowIterator);
 }
 public static function setupBeforeClass($fixture = 'general/query')
 {
     parent::setupBeforeClass($fixture);
 }