Skip to content

Instantly share code, notes, and snippets.

@jakzal
Created October 19, 2011 14:47
Show Gist options
  • Save jakzal/1298503 to your computer and use it in GitHub Desktop.
Save jakzal/1298503 to your computer and use it in GitHub Desktop.
Running Behat in PHPUnit to calculate code coverage
<?php
use Symfony\Component\Console\Input\ArrayInput;
use Symfony\Component\Console\Output\ConsoleOutput;
use Symfony\Bundle\FrameworkBundle\Console\Application;
use Behat\BehatBundle\Command\BehatCommand;
class BehatTest extends KernelAwareTest
{
/**
* @group behat
*/
public function testThatBehatScenariosMeetAcceptanceCriteria()
{
try {
$input = new ArrayInput(array('behat', '-e' => 'test', '--format' => 'progress'));
$output = new ConsoleOutput();
$application = new Application($this->kernel);
$command = new BehatCommand('behat');
$command->setApplication($application);
$result = $command->run($input, $output);
$this->assertEquals(0, $result);
} catch (\Exception $exception) {
$this->fail($exception->getMessage());
}
}
}
@jakzal
Copy link
Author

jakzal commented Feb 1, 2012

@khepin yes but here's the original: https://gist.github.com/1319290

@dantudor
Copy link

@elvisciotti
Copy link

I guess that is meant to be used when there are no http requests (mink steps) Behat/Behat#92

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment