namespace Symfony\Component\DependencyInjection\Tests\Exception;
use PHPUnit\Framework\TestCase;
use Symfony\Component\DependencyInjection\Exception\AutowiringFailedException;
final class AutowiringFailedExceptionTest extends TestCase
{ public function testGetMessageCallbackWhenMessageIsNotANotClosure() { $exception =
new AutowiringFailedException( 'App\DummyService',
'Cannot autowire service "App\DummyService": argument "$email" of method "__construct()" is type-hinted "string", you should configure its value explicitly.'
);
self::
assertNull($exception->
getMessageCallback());
} public function testLazyness() { $counter = 0;
$exception =
new AutowiringFailedException(