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\UndefinedMethodException;
class UndefinedMethodExceptionTest extends \PHPUnit_Framework_TestCase
{
/**
* @expectedException \Brownie\Util\Exception\UndefinedMethodException
*/
public function testException()
throw new UndefinedMethodException('Test');
}