0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
7.0-0
/
standard
/
htdocs
/
lib
/
test
/
[
Home
]
File: TikiTestCase.php
<?php // (c) Copyright 2002-2011 by authors of the Tiki Wiki CMS Groupware Project // // All Rights Reserved. See copyright.txt for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. // $Id: TikiTestCase.php 34026 2011-04-18 21:22:02Z sampaioprimo $ /* * Created on Jan 30, 2009 * * Parent class of all test cases. For some reason PHPUnit doesn't deal * well with globals, so $backupGlobals should be set to false. * Use this class to set other PHPUnit variables, as needed. * */ require_once('PHPUnit/Framework.php'); abstract class TikiTestCase extends PHPUnit_Framework_TestCase { protected $backupGlobals = FALSE; }