Subversion Repositories eFlore/Projets.eflore-projets

Rev

Rev 64 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 64 Rev 94
Line 1... Line 1...
1
<?php
1
<?php
2
class EfloreScriptPhpUnitTestCase extends PHPUnit_Framework_TestCase {
2
abstract class ScriptEflorePhpUnit extends PHPUnit_Framework_TestCase {
Line 3... Line 3...
3
 
3
 
4
	public static function setUpBeforeClass() {
4
	public static function setUpBeforeClass() {
-
 
5
		error_reporting(E_ALL);
-
 
6
 
-
 
7
		self::chargerFramework();
-
 
8
	}
-
 
9
 
5
		error_reporting(E_ALL);
10
	private static function chargerFramework() {
6
		$cheminRacine = realpath(dirname(__FILE__).'/../').'/';
11
		$cheminRacine = realpath(dirname(__FILE__).'/../').'/';
7
		$framework =  $cheminRacine.'framework.php';
12
		$framework =  $cheminRacine.'framework.php';
8
		if (!file_exists($framework)) {
13
		if (!file_exists($framework)) {
9
			$e = "Veuillez paramétrer l'emplacement et la version du Framework dans le fichier $framework";
14
			$e = "Veuillez paramétrer l'emplacement et la version du Framework dans le fichier $framework";