Loading Please wait...
unitList Class Reference
[Unit Testing]
Holds the Unit Test(s) List e.g.
More...
|
Public Member Functions |
| append ($uniItem) |
| Append(s) an Item into the List.
|
| at ($i) |
| Returns an Item on the i'th Index.
|
| length () |
| returns teh Length of the assertItem vector
|
| removeNode ($i) |
| Remove a Test Object.
|
Data Fields |
| $uniResList = array() |
Detailed Description
Holds the Unit Test(s) List e.g.
a vector of assertItem Object
For internal use only.
Definition at line 59 of file unit.php.
Member Function Documentation
unitList::append |
( |
$ |
uniItem |
) |
|
Append(s) an Item into the List.
- Parameters:
-
Definition at line 67 of file unit.php.
00067 {
00068 $this->uniResList[] = $uniItem;
00069 }
Returns an Item on the i'th Index.
- Parameters:
-
- Returns:
- assertItem
Definition at line 76 of file unit.php.
00076 {
00077 return $this->uniResList[$i];
00078 }
returns teh Length of the assertItem vector
- Returns:
- unknown
Definition at line 84 of file unit.php.
00084 {
00085 return count($this->uniResList);
00086 }
unitList::removeNode |
( |
$ |
i |
) |
|
Remove a Test Object.
- Parameters:
-
Definition at line 92 of file unit.php.
00092 {
00093 if(isset($this->uniResList[$i]))unset($this->uniResList[$i]);
00094 }
Field Documentation
unitList::$uniResList = array() |
The documentation for this class was generated from the following file: