summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJakub Zalas <jakub@zalas.pl>2015-12-23 19:13:52 +0100
committerJakub Zalas <jakub@zalas.pl>2015-12-23 19:13:52 +0100
commit88b9dd021f396ecea0ed312b26e2e8fe5b98feeb (patch)
treed9d6961521c217ed03f215f5af468a85b01b7c55
parentaac9bd21f08abfb88e533e50bafb29afc0f9b382 (diff)
downloadsymfony-security-88b9dd021f396ecea0ed312b26e2e8fe5b98feeb.zip
symfony-security-88b9dd021f396ecea0ed312b26e2e8fe5b98feeb.tar.gz
symfony-security-88b9dd021f396ecea0ed312b26e2e8fe5b98feeb.tar.bz2
[Security] Run tests on all PHP versionsv2.7.8
Symfony 2.7 supports PHP >= 5.3.9
-rw-r--r--Core/Tests/Encoder/BCryptPasswordEncoderTest.php9
1 files changed, 0 insertions, 9 deletions
diff --git a/Core/Tests/Encoder/BCryptPasswordEncoderTest.php b/Core/Tests/Encoder/BCryptPasswordEncoderTest.php
index ce6bee5..40de8af 100644
--- a/Core/Tests/Encoder/BCryptPasswordEncoderTest.php
+++ b/Core/Tests/Encoder/BCryptPasswordEncoderTest.php
@@ -45,9 +45,6 @@ class BCryptPasswordEncoderTest extends \PHPUnit_Framework_TestCase
}
}
- /**
- * @requires PHP 5.3.7
- */
public function testResultLength()
{
$encoder = new BCryptPasswordEncoder(self::VALID_COST);
@@ -55,9 +52,6 @@ class BCryptPasswordEncoderTest extends \PHPUnit_Framework_TestCase
$this->assertEquals(60, strlen($result));
}
- /**
- * @requires PHP 5.3.7
- */
public function testValidation()
{
$encoder = new BCryptPasswordEncoder(self::VALID_COST);
@@ -76,9 +70,6 @@ class BCryptPasswordEncoderTest extends \PHPUnit_Framework_TestCase
$encoder->encodePassword(str_repeat('a', 73), 'salt');
}
- /**
- * @requires PHP 5.3.7
- */
public function testCheckPasswordLength()
{
$encoder = new BCryptPasswordEncoder(self::VALID_COST);