Exemplo n.º 1
0
 /**
  * @test
  */
 public function testGetRenderingContextGetsRenderingContext()
 {
     $context = new RenderingContextFixture();
     $instance = new TemplateCompiler();
     $instance->setRenderingContext($context);
     $this->assertSame($context, $instance->getRenderingContext());
 }