for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Test\Brownie\Util\Exception;
use Brownie\Util\Exception\MethodNotImplementedException;
class MethodNotImplementedExceptionTest extends \PHPUnit_Framework_TestCase
{
/**
* @expectedException \Brownie\Util\Exception\MethodNotImplementedException
*/
public function testException()
throw new MethodNotImplementedException('Test');
}