summaryrefslogtreecommitdiffstats
path: root/Tests/Http/EntryPoint/DigestAuthenticationEntryPointTest.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/Http/EntryPoint/DigestAuthenticationEntryPointTest.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/Http/EntryPoint/DigestAuthenticationEntryPointTest.php')
-rw-r--r--Tests/Http/EntryPoint/DigestAuthenticationEntryPointTest.php7
1 files changed, 0 insertions, 7 deletions
diff --git a/Tests/Http/EntryPoint/DigestAuthenticationEntryPointTest.php b/Tests/Http/EntryPoint/DigestAuthenticationEntryPointTest.php
index 8dfd618..5c6eccc 100644
--- a/Tests/Http/EntryPoint/DigestAuthenticationEntryPointTest.php
+++ b/Tests/Http/EntryPoint/DigestAuthenticationEntryPointTest.php
@@ -17,13 +17,6 @@ use Symfony\Component\Security\Core\Exception\NonceExpiredException;
class DigestAuthenticationEntryPointTest extends \PHPUnit_Framework_TestCase
{
- protected function setUp()
- {
- if (!class_exists('Symfony\Component\HttpFoundation\Request')) {
- $this->markTestSkipped('The "HttpFoundation" component is not available');
- }
- }
-
public function testStart()
{
$request = $this->getMock('Symfony\Component\HttpFoundation\Request');