1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-09 00:22:53 +00:00

* we need symfony console objects for ConsoleIO

This commit is contained in:
till 2012-03-09 13:56:27 +01:00
parent cde38f6634
commit 84bf429795

View file

@ -29,6 +29,14 @@ class SvnDriverTest extends \PHPUnit_Framework_TestCase
*/
public static function urlProvider()
{
$nullIO = new \Composer\IO\NullIO;
$input = new \Symfony\Component\Console\Input\ArrayInput(array('install'));
$output = new \Symfony\Component\Console\Output\NullOutput;
$helper = new \Symfony\Component\Console\Helper\HelperSet;
$consoleInteractiveIO = new \Composer\IO\ConsoleIO($input, $output, $helper);
return array(
array(
'http://till:test@svn.example.org/',