PhlyTest\Mustache\MustacheTest::testObjectPropertiesThatReferToPHPBuiltInsShouldNotCallThem PHP Метод

testObjectPropertiesThatReferToPHPBuiltInsShouldNotCallThem() публичный Метод

    public function testObjectPropertiesThatReferToPHPBuiltInsShouldNotCallThem()
    {
        $model = (object) array('message' => 'time');
        $test = $this->mustache->render('template-referencing-php-function', $model);
        $this->assertEquals('time', trim($test));
    }
MustacheTest