object = new AbstractCommandTester('name'); } /** * @covers Alchemy\Phrasea\Command\Command::getFormattedDuration */ public function testGetFormattedDuration() { $this->assertRegExp('/50 \w+/', $this->object->getFormattedDuration(50)); $this->assertRegExp('/1(\.|,)2 \w+/', $this->object->getFormattedDuration(70)); } } class AbstractCommandTester extends Command { protected function doExecute(InputInterface $input, OutputInterface $output) { } }