Skip to content

Instantly share code, notes, and snippets.

@vijaycs85
Last active August 29, 2015 14:17
Show Gist options
  • Save vijaycs85/1f11ff775c6f56f675fa to your computer and use it in GitHub Desktop.
Save vijaycs85/1f11ff775c6f56f675fa to your computer and use it in GitHub Desktop.
<?php
$render = $this->getMock('\Drupal\Core\Render\RendererInterface');
$render->expects($this->any())
->method('render')
->will($this->returnValue($output));
$container = new ContainerBuilder();
$container->set('render', $render);
\Drupal::setContainer($container);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment