Formatting output Plese 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
Append(s) an Item into the List.
- Parameters:
-
| $uniItem | class="el" href="classassertItem.php" title="Item Class that holds the Result of Each Test.">assertItem |
Definition at line 67 of file unit.php.
Show Source00067 {
00068 $this->uniResList[] = $uniItem;
00069 }
Top
Returns an Item on the i'th Index.
- Parameters:
-
- Returns:
- assertItem
Definition at line 76 of file unit.php.
Show Source00076 {
00077 return $this->uniResList[$i];
00078 }
Top
returns teh Length of the assertItem vector
- Returns:
- unknown
Definition at line 84 of file unit.php.
Show Source00084 {
00085 return count($this->uniResList);
00086 }
Top
unitList::removeNode( int $i )
Remove a Test Object.
- Parameters:
-
Definition at line 92 of file unit.php.
Show Source00092 {
00093 if(isset($this->uniResList[$i]))unset($this->uniResList[$i]);
00094 }
Top
Field Documentation
unitList::$uniResList = array()
The documentation for this class was generated from the following file: