From 8368663fedd1a8696b13d9e31f418675efe135cf Mon Sep 17 00:00:00 2001
From: Pablo Cerda <pablo@citla.com>
Date: Sat, 16 Jun 2012 11:57:15 +0200
Subject: [PATCH] Refactored views_handler_argument_comment_user_uid.test and views_handler_filter_comment_user_uid.test to comply the PSR-0

---
 .../Tests/Comment/ArgumentCommentUserUidTest.php   |   10 ++++++++--
 .../Tests/Comment/FilterCommentUserUidTest.php     |    9 +++++++--
 2 files changed, 15 insertions(+), 4 deletions(-)
 rename tests/comment/views_handler_argument_comment_user_uid.test => lib/Drupal/views/Tests/Comment/ArgumentCommentUserUidTest.php (94%)
 rename tests/comment/views_handler_filter_comment_user_uid.test => lib/Drupal/views/Tests/Comment/FilterCommentUserUidTest.php (80%)

diff --git a/tests/comment/views_handler_argument_comment_user_uid.test b/lib/Drupal/views/Tests/Comment/ArgumentCommentUserUidTest.php
similarity index 94%
rename from tests/comment/views_handler_argument_comment_user_uid.test
rename to lib/Drupal/views/Tests/Comment/ArgumentCommentUserUidTest.php
index b228b75..fa8ffb3 100644
--- a/tests/comment/views_handler_argument_comment_user_uid.test
+++ b/lib/Drupal/views/Tests/Comment/ArgumentCommentUserUidTest.php
@@ -2,13 +2,19 @@
 
 /**
  * @file
- * Definition of viewsHandlerArgumentCommentUserUidTest.
+ * Definition of Drupal\views\Tests\Comment\ArgumentCommentUserUidTest.
  */
 
+namespace Drupal\views\Tests\Comment;
+
+use Drupal\simpletest\WebTestBase;
+use ViewsSqlTest;
+use View;
+
 /**
  * Tests the argument_comment_user_uid handler.
  */
-class viewsHandlerArgumentCommentUserUidTest extends ViewsSqlTest {
+class ArgumentCommentUserUidTest extends ViewsSqlTest {
   protected $profile = 'standard';
 
   public static function getInfo() {
diff --git a/tests/comment/views_handler_filter_comment_user_uid.test b/lib/Drupal/views/Tests/Comment/FilterCommentUserUidTest.php
similarity index 80%
rename from tests/comment/views_handler_filter_comment_user_uid.test
rename to lib/Drupal/views/Tests/Comment/FilterCommentUserUidTest.php
index 1f3f75c..4409504 100644
--- a/tests/comment/views_handler_filter_comment_user_uid.test
+++ b/lib/Drupal/views/Tests/Comment/FilterCommentUserUidTest.php
@@ -2,15 +2,20 @@
 
 /**
  * @file
- * Definition of viewsHandlerFilterCommentUserUidTest.
+ * Definition of Drupal\views\Tests\Comment\FilterCommentUserUidTest.
  */
 
+namespace Drupal\views\Tests\Comment;
+
+use Drupal\simpletest\WebTestBase;
+use ViewsSqlTest;
+
 /**
  * Tests the filter_comment_user_uid handler.
  *
  * The actual stuff is done in the parent class.
  */
-class viewsHandlerFilterCommentUserUidTest extends viewsHandlerArgumentCommentUserUidTest {
+class FilterCommentUserUidTest extends ArgumentCommentUserUidTest {
   public static function getInfo() {
     return array(
       'name' => 'Tests handler filter_comment_user_uid',
-- 
1.7.4.1

