<?php
namespace spec\PhpSpec\Formatter\Html;
use PhpSpec\ObjectBehavior;
use Prophecy\Argument;
use Symfony\Component\Console\Input\InputInterface;
class IOSpec extends ObjectBehavior
{
function let(InputInterface $input)
{
$this->beConstructedWith($input);
}
}