Revise BaseRoute tests

This commit is contained in:
PJ Dietz 2015-02-18 20:48:12 -05:00
parent 63fd00fff0
commit 1b17ef5d0a
1 changed files with 1 additions and 5 deletions

View File

@ -51,7 +51,7 @@ class BaseRouteTest extends \PHPUnit_Framework_TestCase
* @covers pjdietz\WellRESTed\Routes\BaseRoute
* @expectedException \UnexpectedValueException
*/
public function testFailWhenHandlerDoesNotImplementInterface()
public function testFailsWhenHandlerDoesNotImplementInterface()
{
$target = "\\stdClass";
@ -73,7 +73,3 @@ class ValidHandler implements HandlerInterface
return null;
}
}
class NotAHandler
{
}