コード例 #1
0
ファイル: JTableNestedTest.php プロジェクト: raquelsa/Joomla
 /**
  * Tests JTableNested::isLeaf
  *
  * @return  void
  *
  * @since   11.3
  */
 public function testIsLeaf()
 {
     $this->assertFalse($this->object->isLeaf(1), 'Root node is not a leaf');
     $this->assertFalse($this->object->isLeaf(23), 'Templates node is not a leaf');
     $this->assertFalse($this->object->isLeaf(-1), 'Invalid node is not a leaf');
     $this->assertTrue($this->object->isLeaf(25), 'Plugins is a leaf');
 }