setTabs() public method

Set tabs
public setTabs ( array $tabs ) : void
$tabs array of \Gc\Tab\Model
return void
Example #1
0
 /**
  * Test
  *
  * @return void
  */
 public function testDelete()
 {
     $this->object->setTabs(array(array('name' => 'TabTest', 'description' => 'TabTest', 'sort_order' => 2, 'document_type_id' => $this->documentType->getId())));
     $this->object->save();
     $this->assertTrue($this->object->delete());
 }