From 3db8b9a2885c5f291eb77839703c91f0d99cb7d4 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Daniel=20Hu=CC=88rtgen?= <daniel@higidi.de>
Date: Tue, 25 Apr 2017 23:19:19 +0200
Subject: [PATCH] =?UTF-8?q?TASK:=20Move=20tests=20to=20=E2=80=9CUnit?=
 =?UTF-8?q?=E2=80=9D=20namespace?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 tests/src/{ => Unit}/PHPCodeSniffer/FinderTest.php            | 2 +-
 tests/src/{ => Unit}/PHPCodeSniffer/Standard/FactoryTest.php  | 2 +-
 tests/src/{ => Unit}/PHPCodeSniffer/Standard/StandardTest.php | 2 +-
 tests/src/{ => Unit}/PHPCodeSniffer/StandardsFactoryTest.php  | 2 +-
 tests/src/{ => Unit}/Symfony/Finder/FactoryTest.php           | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)
 rename tests/src/{ => Unit}/PHPCodeSniffer/FinderTest.php (96%)
 rename tests/src/{ => Unit}/PHPCodeSniffer/Standard/FactoryTest.php (95%)
 rename tests/src/{ => Unit}/PHPCodeSniffer/Standard/StandardTest.php (96%)
 rename tests/src/{ => Unit}/PHPCodeSniffer/StandardsFactoryTest.php (97%)
 rename tests/src/{ => Unit}/Symfony/Finder/FactoryTest.php (94%)

diff --git a/tests/src/PHPCodeSniffer/FinderTest.php b/tests/src/Unit/PHPCodeSniffer/FinderTest.php
similarity index 96%
rename from tests/src/PHPCodeSniffer/FinderTest.php
rename to tests/src/Unit/PHPCodeSniffer/FinderTest.php
index 14d9d37..7afaefb 100644
--- a/tests/src/PHPCodeSniffer/FinderTest.php
+++ b/tests/src/Unit/PHPCodeSniffer/FinderTest.php
@@ -1,6 +1,6 @@
 <?php
 
-namespace Higidi\ComposerPhpCSStandardsPlugin\Tests\PHPCodeSniffer\Standard;
+namespace Higidi\ComposerPhpCSStandardsPlugin\Tests\Unit\PHPCodeSniffer\Standard;
 
 /*
  * Copyright (C) 2017  Daniel Hürtgen <daniel@higidi.de>
diff --git a/tests/src/PHPCodeSniffer/Standard/FactoryTest.php b/tests/src/Unit/PHPCodeSniffer/Standard/FactoryTest.php
similarity index 95%
rename from tests/src/PHPCodeSniffer/Standard/FactoryTest.php
rename to tests/src/Unit/PHPCodeSniffer/Standard/FactoryTest.php
index e3397c3..777c7a5 100644
--- a/tests/src/PHPCodeSniffer/Standard/FactoryTest.php
+++ b/tests/src/Unit/PHPCodeSniffer/Standard/FactoryTest.php
@@ -1,6 +1,6 @@
 <?php
 
-namespace Higidi\ComposerPhpCSStandardsPlugin\Tests\PHPCodeSniffer\Standard;
+namespace Higidi\ComposerPhpCSStandardsPlugin\Tests\Unit\PHPCodeSniffer\Standard;
 
 /*
  * Copyright (C) 2017  Daniel Hürtgen <daniel@higidi.de>
diff --git a/tests/src/PHPCodeSniffer/Standard/StandardTest.php b/tests/src/Unit/PHPCodeSniffer/Standard/StandardTest.php
similarity index 96%
rename from tests/src/PHPCodeSniffer/Standard/StandardTest.php
rename to tests/src/Unit/PHPCodeSniffer/Standard/StandardTest.php
index 1398284..6ab38a7 100644
--- a/tests/src/PHPCodeSniffer/Standard/StandardTest.php
+++ b/tests/src/Unit/PHPCodeSniffer/Standard/StandardTest.php
@@ -1,6 +1,6 @@
 <?php
 
-namespace Higidi\ComposerPhpCSStandardsPlugin\Tests\PHPCodeSniffer\Standard;
+namespace Higidi\ComposerPhpCSStandardsPlugin\Tests\Unit\PHPCodeSniffer\Standard;
 
 /*
  * Copyright (C) 2017  Daniel Hürtgen <daniel@higidi.de>
diff --git a/tests/src/PHPCodeSniffer/StandardsFactoryTest.php b/tests/src/Unit/PHPCodeSniffer/StandardsFactoryTest.php
similarity index 97%
rename from tests/src/PHPCodeSniffer/StandardsFactoryTest.php
rename to tests/src/Unit/PHPCodeSniffer/StandardsFactoryTest.php
index c1dbf2c..3204c15 100644
--- a/tests/src/PHPCodeSniffer/StandardsFactoryTest.php
+++ b/tests/src/Unit/PHPCodeSniffer/StandardsFactoryTest.php
@@ -1,6 +1,6 @@
 <?php
 
-namespace Higidi\ComposerPhpCSStandardsPlugin\Tests\PHPCodeSniffer;
+namespace Higidi\ComposerPhpCSStandardsPlugin\Tests\Unit\PHPCodeSniffer;
 
 /*
  * Copyright (C) 2017  Daniel Hürtgen <daniel@higidi.de>
diff --git a/tests/src/Symfony/Finder/FactoryTest.php b/tests/src/Unit/Symfony/Finder/FactoryTest.php
similarity index 94%
rename from tests/src/Symfony/Finder/FactoryTest.php
rename to tests/src/Unit/Symfony/Finder/FactoryTest.php
index dc4dd15..c7c8972 100644
--- a/tests/src/Symfony/Finder/FactoryTest.php
+++ b/tests/src/Unit/Symfony/Finder/FactoryTest.php
@@ -1,6 +1,6 @@
 <?php
 
-namespace Higidi\ComposerPhpCSStandardsPlugin\Tests\Symfony\Finder;
+namespace Higidi\ComposerPhpCSStandardsPlugin\Tests\Unit\Symfony\Finder;
 
 /*
  * Copyright (C) 2017  Daniel Hürtgen <daniel@higidi.de>
-- 
GitLab