Exemplo n.º 1
0
 /**
  * @group           DataModel
  * @group           DataModelMove
  * @covers          FOF30\Model\DataModel::move
  * @dataProvider    SpecialColumnsDataprovider::getTestMoveException
  */
 public function testMoveException($test, $check)
 {
     $this->setExpectedException($check['exception']);
     $config = array('idFieldName' => $test['tableid'], 'tableName' => $test['table']);
     $model = new DataModelStub(static::$container, $config);
     $model->move(-1);
 }