/**
  * @covers Veles\DataBase\Exceptions\DbException::setParams
  */
 public function testSetParams()
 {
     $expected = [uniqid()];
     $this->object->setParams($expected);
     $result = $this->object->getParams();
     $msg = 'DbException::setParams() wrong behavior!';
     $this->assertSame($expected, $result, $msg);
 }