Пример #1
0
 /**
  * @covers Veles\DataBase\Adapters\PdoAdapter::getPool
  */
 public function testGetPool()
 {
     $expected = new ConnectionPool();
     $this->object->setPool($expected);
     $result = $this->object->getPool();
     $msg = 'Wrong PdoAdapterTest::getPool() behavior';
     $this->assertSame($expected, $result, $msg);
     $this->assertAttributeEquals(null, 'connection_name', $this->object, $msg);
 }