Fakerino\Core\Test\Template\TwigTemplateTest::testRenderStringTemplate PHP Method

testRenderStringTemplate() public method

    public function testRenderStringTemplate()
    {
        $data = array('nameFemale' => 'TEST');
        $this->template->loadTemplate('Hello {{ nameFemale }}');
        $result = $this->template->render($data);
        $this->assertContains($data['nameFemale'], $result);
    }