Tests - modify namespace "Meritoo\Common\Tests" -> "Meritoo\Common\Test"

This commit is contained in:
Meritoo
2017-09-11 19:57:36 +02:00
parent 5940ebba9a
commit 324f64f912
23 changed files with 28 additions and 28 deletions

View File

@@ -6,7 +6,7 @@
* file that was distributed with this source code.
*/
namespace Meritoo\Common\Tests\Collection;
namespace Meritoo\Common\Test\Collection;
use ArrayIterator;
use Meritoo\Common\Collection\Collection;

View File

@@ -6,7 +6,7 @@
* file that was distributed with this source code.
*/
namespace Meritoo\Common\Tests\Exception\Base;
namespace Meritoo\Common\Test\Exception\Base;
use Meritoo\Common\Exception\Base\UnknownTypeException;
use Meritoo\Common\Type\Base\BaseType;

View File

@@ -6,7 +6,7 @@
* file that was distributed with this source code.
*/
namespace Meritoo\Common\Tests\Type\Base;
namespace Meritoo\Common\Test\Type\Base;
use Generator;
use Meritoo\Common\Type\Base\BaseType;

View File

@@ -6,7 +6,7 @@
* file that was distributed with this source code.
*/
namespace Meritoo\Common\Tests\Type;
namespace Meritoo\Common\Test\Type;
use Generator;
use Meritoo\Common\Type\DatePartType;

View File

@@ -6,7 +6,7 @@
* file that was distributed with this source code.
*/
namespace Meritoo\Common\Tests\Utilities;
namespace Meritoo\Common\Test\Utilities;
use Meritoo\Common\Utilities\Arrays;
use PHPUnit_Framework_TestCase;

View File

@@ -6,7 +6,7 @@
* file that was distributed with this source code.
*/
namespace Meritoo\Common\Tests\Utilities;
namespace Meritoo\Common\Test\Utilities;
use Meritoo\Common\Utilities\Bundle;
use PHPUnit_Framework_TestCase;

View File

@@ -6,7 +6,7 @@
* file that was distributed with this source code.
*/
namespace Meritoo\Common\Tests\Utilities;
namespace Meritoo\Common\Test\Utilities;
use Meritoo\Common\Utilities\Composer;
use Meritoo\Common\Utilities\TestCase;

View File

@@ -6,7 +6,7 @@
* file that was distributed with this source code.
*/
namespace Meritoo\Common\Tests\Utilities;
namespace Meritoo\Common\Test\Utilities;
use DateTime;
use Generator;

View File

@@ -6,7 +6,7 @@
* file that was distributed with this source code.
*/
namespace Meritoo\Common\Tests\Utilities;
namespace Meritoo\Common\Test\Utilities;
use DateInterval;
use DateTime;

View File

@@ -6,7 +6,7 @@
* file that was distributed with this source code.
*/
namespace Meritoo\Common\Tests\Utilities;
namespace Meritoo\Common\Test\Utilities;
use Meritoo\Common\Utilities\GeneratorUtility;
use Meritoo\Common\Utilities\TestCase;

View File

@@ -6,7 +6,7 @@
* file that was distributed with this source code.
*/
namespace Meritoo\Common\Tests\Utilities;
namespace Meritoo\Common\Test\Utilities;
use Generator;
use Meritoo\Common\Utilities\Locale;

View File

@@ -6,7 +6,7 @@
* file that was distributed with this source code.
*/
namespace Meritoo\Common\Tests\Utilities;
namespace Meritoo\Common\Test\Utilities;
use Generator;
use Meritoo\Common\Utilities\MimeTypes;

View File

@@ -6,7 +6,7 @@
* file that was distributed with this source code.
*/
namespace Meritoo\Common\Tests\Utilities;
namespace Meritoo\Common\Test\Utilities;
use Generator;
use Meritoo\Common\Exception\Regex\IncorrectColorHexLengthException;

View File

@@ -6,7 +6,7 @@
* file that was distributed with this source code.
*/
namespace Meritoo\Common\Tests\Utilities\Reflection;
namespace Meritoo\Common\Test\Utilities\Reflection;
/**
* The A class.

View File

@@ -6,7 +6,7 @@
* file that was distributed with this source code.
*/
namespace Meritoo\Common\Tests\Utilities\Reflection;
namespace Meritoo\Common\Test\Utilities\Reflection;
/**
* The B class.

View File

@@ -6,7 +6,7 @@
* file that was distributed with this source code.
*/
namespace Meritoo\Common\Tests\Utilities\Reflection;
namespace Meritoo\Common\Test\Utilities\Reflection;
/**
* The C class.

View File

@@ -6,7 +6,7 @@
* file that was distributed with this source code.
*/
namespace Meritoo\Common\Tests\Utilities\Reflection;
namespace Meritoo\Common\Test\Utilities\Reflection;
/**
* The D class.

View File

@@ -6,7 +6,7 @@
* file that was distributed with this source code.
*/
namespace Meritoo\Common\Tests\Utilities\Reflection;
namespace Meritoo\Common\Test\Utilities\Reflection;
/**
* The E trait.

View File

@@ -6,18 +6,18 @@
* file that was distributed with this source code.
*/
namespace Meritoo\Common\Tests\Utilities;
namespace Meritoo\Common\Test\Utilities;
use DateTime;
use Generator;
use Meritoo\Common\Exception\Reflection\CannotResolveClassNameException;
use Meritoo\Common\Exception\Reflection\MissingChildClassesException;
use Meritoo\Common\Exception\Reflection\TooManyChildClassesException;
use Meritoo\Common\Tests\Utilities\Reflection\A;
use Meritoo\Common\Tests\Utilities\Reflection\B;
use Meritoo\Common\Tests\Utilities\Reflection\C;
use Meritoo\Common\Tests\Utilities\Reflection\D;
use Meritoo\Common\Tests\Utilities\Reflection\E;
use Meritoo\Common\Test\Utilities\Reflection\A;
use Meritoo\Common\Test\Utilities\Reflection\B;
use Meritoo\Common\Test\Utilities\Reflection\C;
use Meritoo\Common\Test\Utilities\Reflection\D;
use Meritoo\Common\Test\Utilities\Reflection\E;
use Meritoo\Common\Utilities\Reflection;
use Meritoo\Common\Utilities\TestCase;
@@ -88,7 +88,7 @@ class ReflectionTest extends TestCase
/*
* Existing class
*/
self::assertEquals('Meritoo\Common\Tests\Utilities', Reflection::getClassNamespace(self::class));
self::assertEquals('Meritoo\Common\Test\Utilities', Reflection::getClassNamespace(self::class));
self::assertEquals(DateTime::class, Reflection::getClassNamespace(new DateTime()));
self::assertEquals(DateTime::class, Reflection::getClassNamespace([

View File

@@ -6,7 +6,7 @@
* file that was distributed with this source code.
*/
namespace Meritoo\Common\Tests\Utilities;
namespace Meritoo\Common\Test\Utilities;
use Meritoo\Common\Utilities\TestCase;
use Meritoo\Common\Utilities\Uri;

View File

@@ -6,7 +6,7 @@
* file that was distributed with this source code.
*/
namespace Meritoo\Common\Tests\Utilities;
namespace Meritoo\Common\Test\Utilities;
use Meritoo\Common\Utilities\Xml;
use PHPUnit_Framework_TestCase;