We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 283ba52 commit 9dd9ca9Copy full SHA for 9dd9ca9
src/Symfony/Bundle/SecurityBundle/Tests/Functional/SetAclCommandTest.php
@@ -30,6 +30,13 @@ class SetAclCommandTest extends WebTestCase
30
const OBJECT_CLASS = 'Symfony\Bundle\SecurityBundle\Tests\Functional\Bundle\AclBundle\Entity\Car';
31
const SECURITY_CLASS = 'Symfony\Component\Security\Core\User\User';
32
33
+ protected function setUp()
34
+ {
35
+ if (!class_exists('PDO') || !in_array('sqlite', \PDO::getAvailableDrivers())) {
36
+ self::markTestSkipped('This test requires SQLite support in your environment');
37
+ }
38
39
+
40
public function testSetAclUser()
41
{
42
$objectId = 1;
0 commit comments