diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2014-12-22 17:44:09 +0100 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2014-12-22 17:44:09 +0100 |
commit | 080ac3294fac8b217afe620230600fb427bd2f51 (patch) | |
tree | 094ebe0d9c29984af20b5d219219c824f6dc3486 /Core/Tests/Util/SecureRandomTest.php | |
parent | f54d46e132c02eb833419c24a9d8f4bdcd080167 (diff) | |
parent | 20711216c818e8a57cdb5d3bc1b2fc8bc34757c9 (diff) | |
download | symfony-security-080ac3294fac8b217afe620230600fb427bd2f51.zip symfony-security-080ac3294fac8b217afe620230600fb427bd2f51.tar.gz symfony-security-080ac3294fac8b217afe620230600fb427bd2f51.tar.bz2 |
Merge branch '2.5' into 2.6
* 2.5:
[2.3] CS And DocBlock Fixes
[2.3] CS Fixes
[FrameworkBundle] Fixed Translation loader and update translation command.
[Console] remove « use » statement for PHP built-in exception classes.
[SecurityBundle] adds unit tests suite for SecurityDataCollector class.
Conflicts:
src/Symfony/Bundle/SecurityBundle/DataCollector/SecurityDataCollector.php
src/Symfony/Bundle/SecurityBundle/Tests/DataCollector/SecurityDataCollectorTest.php
src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php
src/Symfony/Component/DependencyInjection/Dumper/YamlDumper.php
src/Symfony/Component/Form/Form.php
src/Symfony/Component/HttpKernel/HttpCache/HttpCache.php
src/Symfony/Component/OptionsResolver/Options.php
src/Symfony/Component/OptionsResolver/OptionsResolver.php
src/Symfony/Component/Process/ProcessPipes.php
src/Symfony/Component/Stopwatch/Stopwatch.php
src/Symfony/Component/Translation/Loader/XliffFileLoader.php
src/Symfony/Component/Validator/Tests/Constraints/AbstractComparisonValidatorTestCase.php
Diffstat (limited to 'Core/Tests/Util/SecureRandomTest.php')
-rw-r--r-- | Core/Tests/Util/SecureRandomTest.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Core/Tests/Util/SecureRandomTest.php b/Core/Tests/Util/SecureRandomTest.php index e3fde69..6e12ef2 100644 --- a/Core/Tests/Util/SecureRandomTest.php +++ b/Core/Tests/Util/SecureRandomTest.php @@ -16,7 +16,7 @@ use Symfony\Component\Security\Core\Util\SecureRandom; class SecureRandomTest extends \PHPUnit_Framework_TestCase { /** - * T1: Monobit test + * T1: Monobit test. * * @dataProvider getSecureRandoms */ @@ -27,7 +27,7 @@ class SecureRandomTest extends \PHPUnit_Framework_TestCase } /** - * T2: Chi-square test with 15 degrees of freedom (chi-Quadrat-Anpassungstest) + * T2: Chi-square test with 15 degrees of freedom (chi-Quadrat-Anpassungstest). * * @dataProvider getSecureRandoms */ @@ -55,7 +55,7 @@ class SecureRandomTest extends \PHPUnit_Framework_TestCase } /** - * Run test + * Run test. * * @dataProvider getSecureRandoms */ @@ -103,7 +103,7 @@ class SecureRandomTest extends \PHPUnit_Framework_TestCase } /** - * Long-run test + * Long-run test. * * @dataProvider getSecureRandoms */ @@ -132,7 +132,7 @@ class SecureRandomTest extends \PHPUnit_Framework_TestCase } /** - * Serial Correlation (Autokorrelationstest) + * Serial Correlation (Autokorrelationstest). * * @dataProvider getSecureRandoms */ |