summaryrefslogtreecommitdiffstats
path: root/Tests
diff options
context:
space:
mode:
authorGraham Campbell <graham@mineuk.com>2014-12-21 17:00:50 +0000
committerFabien Potencier <fabien.potencier@gmail.com>2014-12-22 16:58:09 +0100
commita542abcf38b95de8e8f01f42b6127e7fffc645a8 (patch)
treec84aaf43e18f7fc448861b918a5785a117013fb6 /Tests
parent3b1993579d11af545a1effd2cb3367665dd5a5fd (diff)
downloadsymfony-security-a542abcf38b95de8e8f01f42b6127e7fffc645a8.zip
symfony-security-a542abcf38b95de8e8f01f42b6127e7fffc645a8.tar.gz
symfony-security-a542abcf38b95de8e8f01f42b6127e7fffc645a8.tar.bz2
[2.3] CS And DocBlock Fixes
Diffstat (limited to 'Tests')
-rw-r--r--Tests/Acl/Dbal/MutableAclProviderTest.php2
-rw-r--r--Tests/Core/Util/SecureRandomTest.php10
-rw-r--r--Tests/Core/Util/StringUtilsTest.php2
3 files changed, 8 insertions, 6 deletions
diff --git a/Tests/Acl/Dbal/MutableAclProviderTest.php b/Tests/Acl/Dbal/MutableAclProviderTest.php
index 3f60efa..21ea670 100644
--- a/Tests/Acl/Dbal/MutableAclProviderTest.php
+++ b/Tests/Acl/Dbal/MutableAclProviderTest.php
@@ -411,6 +411,8 @@ class MutableAclProviderTest extends \PHPUnit_Framework_TestCase
}
/**
+ * Imports acls.
+ *
* Data must have the following format:
* array(
* *name* => array(
diff --git a/Tests/Core/Util/SecureRandomTest.php b/Tests/Core/Util/SecureRandomTest.php
index 05b4b02..bd9fec5 100644
--- a/Tests/Core/Util/SecureRandomTest.php
+++ b/Tests/Core/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/Tests/Core/Util/StringUtilsTest.php b/Tests/Core/Util/StringUtilsTest.php
index b16cbac..3b18d48 100644
--- a/Tests/Core/Util/StringUtilsTest.php
+++ b/Tests/Core/Util/StringUtilsTest.php
@@ -14,7 +14,7 @@ namespace Symfony\Component\Security\Tests\Core\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
{