summaryrefslogtreecommitdiffstats
path: root/Core/Tests/Util
diff options
context:
space:
mode:
authorFabien Potencier <fabien.potencier@gmail.com>2014-12-22 17:45:18 +0100
committerFabien Potencier <fabien.potencier@gmail.com>2014-12-22 17:45:18 +0100
commit79e6ddaa570c264ade4e6d19e84f9b98d22b5acc (patch)
tree24836ae0cbfc9c67ea68fe3dfd4c3b124c4a5501 /Core/Tests/Util
parent178e160ba5022168854176deaad4c81f45ae2288 (diff)
parent080ac3294fac8b217afe620230600fb427bd2f51 (diff)
downloadsymfony-security-79e6ddaa570c264ade4e6d19e84f9b98d22b5acc.zip
symfony-security-79e6ddaa570c264ade4e6d19e84f9b98d22b5acc.tar.gz
symfony-security-79e6ddaa570c264ade4e6d19e84f9b98d22b5acc.tar.bz2
Merge branch '2.6' into 2.7
* 2.6: [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
Diffstat (limited to 'Core/Tests/Util')
-rw-r--r--Core/Tests/Util/SecureRandomTest.php10
-rw-r--r--Core/Tests/Util/StringUtilsTest.php2
2 files changed, 6 insertions, 6 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
*/
diff --git a/Core/Tests/Util/StringUtilsTest.php b/Core/Tests/Util/StringUtilsTest.php
index e0366a5..faeaf25 100644
--- a/Core/Tests/Util/StringUtilsTest.php
+++ b/Core/Tests/Util/StringUtilsTest.php
@@ -14,7 +14,7 @@ namespace Symfony\Component\Security\Core\Tests\Util;
use Symfony\Component\Security\Core\Util\StringUtils;
/**
- * Data from PHP.net's hash_equals tests
+ * Data from PHP.net's hash_equals tests.
*/
class StringUtilsTest extends \PHPUnit_Framework_TestCase
{