for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Vectorface\SnappyRouterTests\Task;
use \Exception;
use Vectorface\SnappyRouter\Task\AbstractTask;
class DummyTestTask extends AbstractTask
{
public function testMethod()
$options = $this->getOptions();
$this->set('taskOptions', $options);
$this->set('response', 'Hello World');
return $this->get('response');
}
public function throwsException()
throw new Exception('An exception was thrown.');