summaryrefslogtreecommitdiffstats
path: root/Tests/Core/Util/StringUtilsTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/Core/Util/StringUtilsTest.php')
-rw-r--r--Tests/Core/Util/StringUtilsTest.php23
1 files changed, 0 insertions, 23 deletions
diff --git a/Tests/Core/Util/StringUtilsTest.php b/Tests/Core/Util/StringUtilsTest.php
deleted file mode 100644
index aac4139..0000000
--- a/Tests/Core/Util/StringUtilsTest.php
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php
-
-/*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
-
-namespace Symfony\Component\Security\Tests\Core\Util;
-
-use Symfony\Component\Security\Core\Util\StringUtils;
-
-class StringUtilsTest extends \PHPUnit_Framework_TestCase
-{
- public function testEquals()
- {
- $this->assertTrue(StringUtils::equals('password', 'password'));
- $this->assertFalse(StringUtils::equals('password', 'foo'));
- }
-}