1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace Codeception\Util;
- class TemplateTest extends \PHPUnit_Framework_TestCase
- {
- public function testTemplateCanPassValues()
- {
- $template = new Template("hello, {{name}}");
- $template->place('name', 'davert');
- $this->assertEquals('hello, davert', $template->produce());
- }
- public function testTemplateCanHaveOtherPlaceholder()
- {
- $template = new Template("hello, %name%", '%', '%');
- $template->place('name', 'davert');
- $this->assertEquals('hello, davert', $template->produce());
- }
- public function testTemplateSupportsDotNotationForArrays()
- {
- $template = new Template("hello, {{user.data.name}}");
- $template->place('user', ['data' => ['name' => 'davert']]);
- $this->assertEquals('hello, davert', $template->produce());
- }
- public function testShouldSkipUnmatchedPlaceholder()
- {
- $template = new Template("hello, {{name}}");
- $this->assertEquals('hello, {{name}}', $template->produce());
- }
- }
|