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