summaryrefslogtreecommitdiffstats
path: root/Tests/Acl/Domain/DoctrineAclCacheTest.php
diff options
context:
space:
mode:
authorFabien Potencier <fabien.potencier@gmail.com>2013-08-19 22:44:13 +0200
committerFabien Potencier <fabien.potencier@gmail.com>2013-08-19 22:44:22 +0200
commit2defac09f53c04202772f442f0612d9664f9b185 (patch)
treeec646668a1474c464651231e94cb9e6d061284cd /Tests/Acl/Domain/DoctrineAclCacheTest.php
parent3a63ed4527abf2fa9cc1a240cc2947d2317de182 (diff)
downloadsymfony-security-2defac09f53c04202772f442f0612d9664f9b185.zip
symfony-security-2defac09f53c04202772f442f0612d9664f9b185.tar.gz
symfony-security-2defac09f53c04202772f442f0612d9664f9b185.tar.bz2
removed deps checks in unit tests
As Composer is now widely used in the PHP world, having to run composer install before running the test suite is expected. This also has the nice benefit of removing a bunch of code, making things easier to maintain (there is only one place to declare a dev dependency), and probably more.
Diffstat (limited to 'Tests/Acl/Domain/DoctrineAclCacheTest.php')
-rw-r--r--Tests/Acl/Domain/DoctrineAclCacheTest.php7
1 files changed, 0 insertions, 7 deletions
diff --git a/Tests/Acl/Domain/DoctrineAclCacheTest.php b/Tests/Acl/Domain/DoctrineAclCacheTest.php
index 99eb27e..93c87c1 100644
--- a/Tests/Acl/Domain/DoctrineAclCacheTest.php
+++ b/Tests/Acl/Domain/DoctrineAclCacheTest.php
@@ -98,11 +98,4 @@ class DoctrineAclCacheTest extends \PHPUnit_Framework_TestCase
return new DoctrineAclCache($cacheDriver, $this->getPermissionGrantingStrategy(), $prefix);
}
-
- protected function setUp()
- {
- if (!class_exists('Doctrine\DBAL\DriverManager')) {
- $this->markTestSkipped('The Doctrine2 DBAL is required for this test');
- }
- }
}