From 1b01a074dc6d80b98a36df147566d83f6cf31d50 Mon Sep 17 00:00:00 2001 From: Christophe Coevoet Date: Sat, 3 Nov 2012 17:07:56 +0100 Subject: [PATCH] Fixed the testsuite --- .../Command/ConvertDoctrine1SchemaCommandTest.php | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/tests/Doctrine/Tests/ORM/Tools/Console/Command/ConvertDoctrine1SchemaCommandTest.php b/tests/Doctrine/Tests/ORM/Tools/Console/Command/ConvertDoctrine1SchemaCommandTest.php index a17073162..ea19fefc3 100644 --- a/tests/Doctrine/Tests/ORM/Tools/Console/Command/ConvertDoctrine1SchemaCommandTest.php +++ b/tests/Doctrine/Tests/ORM/Tools/Console/Command/ConvertDoctrine1SchemaCommandTest.php @@ -9,15 +9,14 @@ class ConvertDoctrine1SchemaCommandTest extends \Doctrine\Tests\OrmTestCase public function testExecution() { $entityGenerator = $this->getMock('Doctrine\ORM\Tools\EntityGenerator'); - $metadataExporter = $this->getMock('Doctrine\ORM\Tools\Export\ClassMetadataExporter'); $command = new ConvertDoctrine1SchemaCommand(); $command->setEntityGenerator($entityGenerator); $output = $this->getMock('Symfony\Component\Console\Output\OutputInterface'); $output->expects($this->once()) - ->method('write') - ->with($this->equalTo('No Metadata Classes to process.' . PHP_EOL)); + ->method('writeln') + ->with($this->equalTo('No Metadata Classes to process.')); - $command->convertDoctrine1Schema($this->_getTestEntityManager(), array(), sys_get_temp_dir(), 'annotation', 4, null, $output); + $command->convertDoctrine1Schema(array(), sys_get_temp_dir(), 'annotation', 4, null, $output); } -} \ No newline at end of file +}