Loading Please wait...

unitList Class Reference
[Unit Testing]

Holds the Unit Test(s) List e.g. More...

Inheritance diagram for unitList:

Inheritance graph
[legend]
Collaboration diagram for unitList:

Collaboration graph
[legend]

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:
$uniItem assertItem

Definition at line 67 of file unit.php.

00067                            {
00068     $this->uniResList[] = $uniItem;
00069   }

unitList::at ( i  ) 

Returns an Item on the i'th Index.

Parameters:
$i int
Returns:
assertItem

Definition at line 76 of file unit.php.

00076                  {
00077     return $this->uniResList[$i];
00078   }

unitList::length (  ) 

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:
$i int

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()

Definition at line 60 of file unit.php.


The documentation for this class was generated from the following file:

Generated on Mon Oct 27 23:53:13 2008 for zigmoyd.kdevelop by doxygen 1.5.6