<?php
/**
* This file is part of the Fakerino package.
*
* (c) Nicola Pietroluongo <nik.longstone@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Fakerino\Test\Core\FakeHandler;
use Fakerino\Core\FakeElement;
use Fakerino\Core\FakeHandler\FakeHandler;
/**
* @group handler
*/
class FakeHandlerTest extends \PHPUnit_Framework_TestCase
{
public function testHandler()
{
$handler = new FakeHandler();
$this->assertInstanceOf('Fakerino\Core\FakeHandler\Handler', $handler);
$this->assertNull($handler->handle(new FakeElement('null')));
}
}
|