* we need symfony console objects for ConsoleIO
parent
cde38f6634
commit
84bf429795
|
@ -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/',
|
||||
|
|
Loading…
Reference in New Issue