summaryrefslogtreecommitdiffstats
path: root/Tests/Core/Role/RoleTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/Core/Role/RoleTest.php')
-rw-r--r--Tests/Core/Role/RoleTest.php24
1 files changed, 0 insertions, 24 deletions
diff --git a/Tests/Core/Role/RoleTest.php b/Tests/Core/Role/RoleTest.php
deleted file mode 100644
index e2e7ca8..0000000
--- a/Tests/Core/Role/RoleTest.php
+++ /dev/null
@@ -1,24 +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\Role;
-
-use Symfony\Component\Security\Core\Role\Role;
-
-class RoleTest extends \PHPUnit_Framework_TestCase
-{
- public function testGetRole()
- {
- $role = new Role('FOO');
-
- $this->assertEquals('FOO', $role->getRole());
- }
-}