Esempio n. 1
0
 /**
  * @group           DataModel
  * @group           DataModelReorder
  * @covers          FOF30\Model\DataModel::reorder
  */
 public function testReorderException()
 {
     $this->setExpectedException('\\FOF30\\Model\\DataModel\\Exception\\SpecialColumnMissing');
     $config = array('idFieldName' => 'foftest_bare_id', 'tableName' => '#__foftest_bares');
     $model = new DataModelStub(static::$container, $config);
     $model->reorder();
 }