Move doubles to Doubles namespace

This commit is contained in:
PJ Dietz 2016-05-21 12:08:17 -04:00
parent a294a7eaf5
commit 92294a2e67
7 changed files with 8 additions and 8 deletions

View File

@ -1,6 +1,6 @@
<?php
namespace WellRESTed\Test;
namespace WellRESTed\Test\Doubles;
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\ServerRequestInterface;

View File

@ -1,6 +1,6 @@
<?php
namespace WellRESTed\Test;
namespace WellRESTed\Test\Doubles;
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\ServerRequestInterface;

View File

@ -6,7 +6,7 @@ use WellRESTed\Dispatching\Dispatcher;
use WellRESTed\Dispatching\DispatchStack;
use WellRESTed\Message\Response;
use WellRESTed\Message\ServerRequest;
use WellRESTed\Test\NextMock;
use WellRESTed\Test\Doubles\NextMock;
/**
* @covers WellRESTed\Dispatching\DispatchStack

View File

@ -9,7 +9,7 @@ use WellRESTed\Dispatching\Dispatcher;
use WellRESTed\Message\Response;
use WellRESTed\Message\ServerRequest;
use WellRESTed\MiddlewareInterface;
use WellRESTed\Test\NextMock;
use WellRESTed\Test\Doubles\NextMock;
/**
* @covers WellRESTed\Dispatching\Dispatcher

View File

@ -7,8 +7,8 @@ use WellRESTed\Dispatching\Dispatcher;
use WellRESTed\Message\Response;
use WellRESTed\Message\ServerRequest;
use WellRESTed\Routing\MethodMap;
use WellRESTed\Test\MiddlewareMock;
use WellRESTed\Test\NextMock;
use WellRESTed\Test\Doubles\MiddlewareMock;
use WellRESTed\Test\Doubles\NextMock;
/**
* @covers WellRESTed\Routing\MethodMap

View File

@ -8,7 +8,7 @@ use WellRESTed\Message\Response;
use WellRESTed\Message\ServerRequest;
use WellRESTed\Routing\Route\RouteInterface;
use WellRESTed\Routing\Router;
use WellRESTed\Test\NextMock;
use WellRESTed\Test\Doubles\NextMock;
/**
* @covers WellRESTed\Routing\Router

View File

@ -6,7 +6,7 @@ use Prophecy\Argument;
use WellRESTed\Message\Response;
use WellRESTed\Message\ServerRequest;
use WellRESTed\Server;
use WellRESTed\Test\NextMock;
use WellRESTed\Test\Doubles\NextMock;
/** @covers WellRESTed\Server */
class ServerTest extends \PHPUnit_Framework_TestCase