1
0
Fork 0

* we need symfony console objects for ConsoleIO

pull/410/head
till 2012-03-09 13:56:27 +01:00
parent cde38f6634
commit 84bf429795
1 changed files with 8 additions and 0 deletions

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/',