1: <?php
2: require_once(__DIR__."/BarebonesTestCase.php");
3:
4: class BaseModelTestCase extends BarebonesTestCase
5: {
6:
7: public static function setUpBeforeClass()
8: {
9: // this is bad, don't do this
10: /*if(file_exists(__DIR__."/../../../../barebones/config/config.php")){
11: require_once(__DIR__."/../../../../barebones/config/config.php");
12: }*/
13: }
14: }
15:
16: ?>
17: