Commit d2db07cb authored by Marco Pivetta's avatar Marco Pivetta

#714 - adding missing `@group` annotations for reference

parent 1e130ff5
......@@ -13,6 +13,9 @@ class DriverTest extends AbstractPostgreSQLDriverTest
$this->assertSame('pdo_pgsql', $this->driver->getName());
}
/**
* @group DBAL-920
*/
public function testConnectionDisablesPreparesOnPhp56()
{
$this->skipWhenNotUsingPhp56AndPdoPgsql();
......@@ -31,6 +34,9 @@ class DriverTest extends AbstractPostgreSQLDriverTest
$this->assertTrue($connection->getAttribute(PDO::PGSQL_ATTR_DISABLE_PREPARES));
}
/**
* @group DBAL-920
*/
public function testConnectionDoesNotDisablePreparesOnPhp56WhenAttributeDefined()
{
$this->skipWhenNotUsingPhp56AndPdoPgsql();
......@@ -50,6 +56,9 @@ class DriverTest extends AbstractPostgreSQLDriverTest
$this->assertNotSame(true, $connection->getAttribute(PDO::PGSQL_ATTR_DISABLE_PREPARES));
}
/**
* @group DBAL-920
*/
public function testConnectionDisablePreparesOnPhp56WhenDisablePreparesIsExplicitlyDefined()
{
$this->skipWhenNotUsingPhp56AndPdoPgsql();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment