test.php
1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?php
/*
Copyright (c) 2009-2014 F3::Factory/Bong Cosca, All rights reserved.
This file is part of the Fat-Free Framework (http://fatfree.sf.net).
THE SOFTWARE AND DOCUMENTATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF
ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
PURPOSE.
Please see the license.txt file for more information.
*/
//! Unit test kit
class Test {
//@{ Reporting level
const
FLAG_False=0,
FLAG_True=1,
FLAG_Both=2;
//@}
protected
//! Test results
$data=array();
/**
* Return test results
* @return array
**/
function results() {
return $this->data;
}
/**
* Evaluate condition and save test result
* @return object
* @param $cond bool
* @param $text string
**/
function expect($cond,$text=NULL) {
$out=(bool)$cond;
if ($this->level==$out || $this->level==self::FLAG_Both) {
$data=array('status'=>$out,'text'=>$text,'source'=>NULL);
foreach (debug_backtrace() as $frame)
if (isset($frame['file'])) {
$data['source']=Base::instance()->
fixslashes($frame['file']).':'.$frame['line'];
break;
}
$this->data[]=$data;
}
return $this;
}
/**
* Append message to test results
* @return NULL
* @param $text string
**/
function message($text) {
$this->expect(TRUE,$text);
}
/**
* Class constructor
* @return NULL
* @param $level int
**/
function __construct($level=self::FLAG_Both) {
$this->level=$level;
}
}