diff options
Diffstat (limited to 'tests/unit/Collections/TPriorityListTest.php')
-rw-r--r-- | tests/unit/Collections/TPriorityListTest.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/unit/Collections/TPriorityListTest.php b/tests/unit/Collections/TPriorityListTest.php index d1570302..4219b942 100644 --- a/tests/unit/Collections/TPriorityListTest.php +++ b/tests/unit/Collections/TPriorityListTest.php @@ -1,5 +1,11 @@ <?php +use Prado\Collections\TPriorityList; +use Prado\Exceptions\TInvalidDataTypeException; +use Prado\Exceptions\TInvalidDataValueException; +use Prado\Exceptions\TInvalidOperationException; +use Prado\Prado; + class PriorityListItem { var $data = 'data'; @@ -8,7 +14,6 @@ class PriorityListItem $this->data = $d; } } -Prado::using('System.Collections.TPriorityList'); /** * All Test cases for the TList are here. The TPriorityList should act just like a TList when used exactly like a TList |