From 25e8ecc5ba55202992af3c326d5287f592cfa160 Mon Sep 17 00:00:00 2001 From: till Date: Fri, 9 Mar 2012 17:27:06 +0100 Subject: [PATCH] * trim the testcase: no need to inject nullio --- .../Test/Repository/Vcs/SvnDriverTest.php | 25 ++++--------------- 1 file changed, 5 insertions(+), 20 deletions(-) diff --git a/tests/Composer/Test/Repository/Vcs/SvnDriverTest.php b/tests/Composer/Test/Repository/Vcs/SvnDriverTest.php index d2a30e69e..7bfc985d9 100644 --- a/tests/Composer/Test/Repository/Vcs/SvnDriverTest.php +++ b/tests/Composer/Test/Repository/Vcs/SvnDriverTest.php @@ -31,32 +31,18 @@ class SvnDriverTest extends \PHPUnit_Framework_TestCase { $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/', " --no-auth-cache --username 'till' --password 'test' ", - $nullIO, ), array( 'http://svn.apache.org/', '', - $nullIO, ), array( 'svn://johndoe@example.org', " --no-auth-cache --username 'johndoe' --password '' ", - $nullIO, - ), - array( - 'https://till:secret@corp.svn.local/project1', - " --username 'till' --password 'secret' ", - $consoleInteractiveIO, ), ); } @@ -64,15 +50,14 @@ class SvnDriverTest extends \PHPUnit_Framework_TestCase /** * Test the credential string. * - * @param string $url The SVN url. - * @param string $expect The expectation for the test. - * @param string $ioClass The IO interface. - * + * @param string $url The SVN url. + * @param string $expect The expectation for the test. + * * @dataProvider urlProvider */ - public function testCredentials($url, $expect, \Composer\IO\IOInterface $io) + public function testCredentials($url, $expect) { - $svn = new SvnDriver($url, $io); + $svn = new SvnDriver($url, new \Composer\IO\NullIO); $this->assertEquals($expect, $svn->getSvnCredentialString()); }