* @license MIT * * @covers \ProxyManager\Exception\InvalidProxyDirectoryException * @group Coverage */ class InvalidProxyDirectoryExceptionTest extends PHPUnit_Framework_TestCase { /** * @covers \ProxyManager\Exception\InvalidProxyDirectoryException::proxyDirectoryNotFound */ public function testProxyDirectoryNotFound() { $exception = InvalidProxyDirectoryException::proxyDirectoryNotFound('foo/bar'); $this->assertSame('Provided directory "foo/bar" does not exist', $exception->getMessage()); } }