Exemplo n.º 1
0
 /**
  * tests setter and getter for the sortindex
  *
  * @group data
  * @group sourcetest
  */
 public function testSetGetSortIndex()
 {
     $sortIndex = 42;
     self::assertSame($this->object, $this->object->setSortIndex($sortIndex));
     self::assertSame($sortIndex, $this->object->getSortIndex());
 }