mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-11-03 22:01:36 +01:00 
			
		
		
		
	* Removed unneeded files and replace dummy.txt with .gitignore files * Synced unit tests with master codebase, noted TODO's, fixed phpunit scripts and travis config * fix php7.4 deprecation and remove php7.4 from travis allow_failures since php7.4 is current stable Co-authored-by: Uwe Tews <uwe.tews@googlemail.com> Co-authored-by: Uwe Tews <uwe.tews@gmail.com> Co-authored-by: AnrDaemon <anrdaemon@yandex.ru>
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Smarty PHPunit tests appendByRef method
 | 
						|
 *
 | 
						|
 * @package PHPunit
 | 
						|
 * @author  Uwe Tews
 | 
						|
 */
 | 
						|
 | 
						|
/**
 | 
						|
 * class for appendByRef tests
 | 
						|
 *
 | 
						|
 * @runTestsInSeparateProcess
 | 
						|
 * @preserveGlobalState disabled
 | 
						|
 * @backupStaticAttributes enabled
 | 
						|
 */
 | 
						|
class AppendByRefBCTest extends PHPUnit_Smarty
 | 
						|
{
 | 
						|
    public $loadSmartyBC = true;
 | 
						|
    public $loadSmarty = false;
 | 
						|
    public function setUp()
 | 
						|
    {
 | 
						|
        $this->setUpSmarty(dirname(__FILE__));
 | 
						|
    }
 | 
						|
 | 
						|
    public function testInit()
 | 
						|
    {
 | 
						|
        $this->cleanDirs();
 | 
						|
    }
 | 
						|
 | 
						|
    public function testSmarty2AppendByRef()
 | 
						|
    {
 | 
						|
        $bar = 'bar';
 | 
						|
        $bar2 = 'bar2';
 | 
						|
        $this->smartyBC->append_by_ref('foo', $bar);
 | 
						|
        $this->smartyBC->append_by_ref('foo', $bar2);
 | 
						|
        $bar = 'newbar';
 | 
						|
        $bar2 = 'newbar2';
 | 
						|
        $this->assertEquals('newbar newbar2', $this->smartyBC->fetch('eval:{$foo[0]} {$foo[1]}'));
 | 
						|
    }
 | 
						|
 | 
						|
    public function testSmarty2AppendByRefUnassigned()
 | 
						|
    {
 | 
						|
        $bar2 = 'bar2';
 | 
						|
        $this->smartyBC->append_by_ref('foo', $bar2);
 | 
						|
        $bar2 = 'newbar2';
 | 
						|
        $this->assertEquals('newbar2', $this->smartyBC->fetch('eval:{$foo[0]}'));
 | 
						|
    }
 | 
						|
}
 |