for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Hairmare\Dodat;
class RunTest extends \PHPUnit_Framework_TestCase
{
public function testRun()
$sut = new Run;
$sut->setScripts(array('printf "Hello "', 'echo "World!"'));
$sut->run();
$this->expectOutputString("Hello World!\n");
}