mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-11-03 22:01:36 +01:00 
			
		
		
		
	* Set $errcontext argument optional to support PHP 8 - Argument is optional and deprecated in PHP 7.2 * Getting ready for PHP8, handling changed error levels/handlers mostly * php5 compat syntax * Updated UndefinedTemplateVarTest for PHP8 (and disabled a check for PHP<5.6) and re-enabled php:nightly in travis config * Attempt to fix travis runs for (almost) all php versions supported * Fix unit tests for php8, force composer to think we are still php7 to pick a supported phpunit and being less specific about an error msg because PHP8 is in active development and the exact wording is changing. * Fixed a unit test that accidentally passed on phpunit < 7 because of sloppy string comparison. * changelog * run travis in xenial where possible for latest php versions. Fix unit tests from freakingo over inconsistent error messages in php8-beta. * Incorporated AnrDaemons suggestions, making composer figure out the required phpunit version instead of specifying it explicitly and removing a unneeded error supression (@). Co-authored-by: Jorge Sá Pereira <me@jorgesapereira.com>
		
			
				
	
	
		
			41 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Smarty PHPunit tests clearing all assigned variables
 | 
						|
 *
 | 
						|
 * @package PHPunit
 | 
						|
 * @author  Uwe Tews
 | 
						|
 */
 | 
						|
 | 
						|
/**
 | 
						|
 * class for clearing all assigned variables tests
 | 
						|
 *
 | 
						|
 * @runTestsInSeparateProcess
 | 
						|
 * @preserveGlobalState disabled
 | 
						|
 * @backupStaticAttributes enabled
 | 
						|
 */
 | 
						|
class ClearAllAssignBCTest extends PHPUnit_Smarty
 | 
						|
{
 | 
						|
    public $loadSmartyBC = true;
 | 
						|
    public $loadSmarty = false;
 | 
						|
    protected $_dataBC = null;
 | 
						|
    protected $_tplBC = null;
 | 
						|
 | 
						|
    public function setUp()
 | 
						|
    {
 | 
						|
        $this->setUpSmarty(dirname(__FILE__));
 | 
						|
 | 
						|
        $this->smartyBC->assign('foo', 'foo');
 | 
						|
        $this->_dataBC = $this->smartyBC->createData($this->smartyBC);
 | 
						|
        $this->_dataBC->assign('bar', 'bar');
 | 
						|
        $this->_tplBC = $this->smartyBC->createTemplate('eval:{$foo}{$bar}{$blar}', null, null, $this->_dataBC);
 | 
						|
        $this->_tplBC->assign('blar', 'blar');
 | 
						|
    }
 | 
						|
 | 
						|
    public function testSmarty2ClearAllAssignInSmarty()
 | 
						|
    {
 | 
						|
        error_reporting((error_reporting() & ~(E_NOTICE | E_WARNING | E_USER_NOTICE)));
 | 
						|
        $this->smartyBC->clear_all_assign();
 | 
						|
        $this->assertEquals('barblar', $this->smartyBC->fetch($this->_tplBC));
 | 
						|
    }
 | 
						|
}
 |