Ejemplo n.º 1
0
	public function setUp() {
		Session::$site = 'http://www.test.info/';
		Session::$referrer = 'http://www.test.info/some/part/of/the/site';
		$config = new Config('config/tests.config.php');
		CoOrg::init($config, 'coorg/tests/mocks/app', 'coorg/tests/mocks/plugins');
		CoOrgSmarty::$vars = array();
	}
Ejemplo n.º 2
0
	public static function clearAll()
	{
		self::$renderedOutput = '';
		self::$vars = array();
		self::$notices = array();
		self::$errors = array();
		self::$renderedTemplate = null;
	}
Ejemplo n.º 3
0
	public function setUp() {
		CoOrgSmarty::$vars = array();
		Session::$site = 'http://www.test.info/';
		Session::$referrer = 'http://www.test.info/some/part/of/the/site';
		$config = new Config('config/tests.config.php');
		$config->set('aside/main', array('home/alpha'));
		CoOrg::init($config, 'coorg/tests/mocks/app', 'coorg/tests/mocks/plugins');
		I18n::setLanguage('');
	}