diff options
author | Fabio Bas <ctrlaltca@gmail.com> | 2013-09-17 09:45:24 +0200 |
---|---|---|
committer | Fabio Bas <ctrlaltca@gmail.com> | 2013-09-17 09:45:24 +0200 |
commit | 7dbca97c478e34b2d7a7c47f1bc18ba7d7ce1525 (patch) | |
tree | 381bda2e192ecfae33c83d7f1c972894bc1cf562 /tests/unit/Collections | |
parent | 4117b88528ba9a7d3fbdf3248aeb8ca0f7c37455 (diff) |
Chnages in phpunit's bootstrap script; should hopefully fix travis
Diffstat (limited to 'tests/unit/Collections')
-rw-r--r-- | tests/unit/Collections/AllTests.php | 1 | ||||
-rw-r--r-- | tests/unit/Collections/TAttributeCollectionTest.php | 1 | ||||
-rw-r--r-- | tests/unit/Collections/TListTest.php | 1 | ||||
-rw-r--r-- | tests/unit/Collections/TMapTest.php | 1 | ||||
-rw-r--r-- | tests/unit/Collections/TPagedDataSourceTest.php | 1 | ||||
-rw-r--r-- | tests/unit/Collections/TPagedListTest.php | 1 | ||||
-rw-r--r-- | tests/unit/Collections/TPriorityListTest.php | 1 | ||||
-rw-r--r-- | tests/unit/Collections/TQueueTest.php | 1 | ||||
-rw-r--r-- | tests/unit/Collections/TStackTest.php | 1 |
9 files changed, 0 insertions, 9 deletions
diff --git a/tests/unit/Collections/AllTests.php b/tests/unit/Collections/AllTests.php index efa7eb21..f290be31 100644 --- a/tests/unit/Collections/AllTests.php +++ b/tests/unit/Collections/AllTests.php @@ -1,5 +1,4 @@ <?php -require_once dirname(__FILE__).'/../phpunit.php'; if(!defined('PHPUnit_MAIN_METHOD')) { define('PHPUnit_MAIN_METHOD', 'Collections_AllTests::main'); diff --git a/tests/unit/Collections/TAttributeCollectionTest.php b/tests/unit/Collections/TAttributeCollectionTest.php index afded5f3..5805f2d0 100644 --- a/tests/unit/Collections/TAttributeCollectionTest.php +++ b/tests/unit/Collections/TAttributeCollectionTest.php @@ -1,5 +1,4 @@ <?php -require_once dirname(__FILE__).'/../phpunit.php'; Prado::using('System.Collections.TAttributeCollection'); diff --git a/tests/unit/Collections/TListTest.php b/tests/unit/Collections/TListTest.php index a5a1b2b0..349d87ed 100644 --- a/tests/unit/Collections/TListTest.php +++ b/tests/unit/Collections/TListTest.php @@ -1,5 +1,4 @@ <?php -require_once dirname(__FILE__).'/../phpunit.php'; class ListItem { public $data='data'; diff --git a/tests/unit/Collections/TMapTest.php b/tests/unit/Collections/TMapTest.php index 81062855..0634a2a3 100644 --- a/tests/unit/Collections/TMapTest.php +++ b/tests/unit/Collections/TMapTest.php @@ -1,5 +1,4 @@ <?php -require_once dirname(__FILE__).'/../phpunit.php'; class TMapTest_MapItem { public $data='data'; diff --git a/tests/unit/Collections/TPagedDataSourceTest.php b/tests/unit/Collections/TPagedDataSourceTest.php index f016c275..92f4061b 100644 --- a/tests/unit/Collections/TPagedDataSourceTest.php +++ b/tests/unit/Collections/TPagedDataSourceTest.php @@ -1,5 +1,4 @@ <?php -require_once dirname(__FILE__).'/../phpunit.php'; Prado::using('System.Collections.TPagedDataSource'); diff --git a/tests/unit/Collections/TPagedListTest.php b/tests/unit/Collections/TPagedListTest.php index 72eabc31..2d884736 100644 --- a/tests/unit/Collections/TPagedListTest.php +++ b/tests/unit/Collections/TPagedListTest.php @@ -1,5 +1,4 @@ <?php -require_once dirname(__FILE__).'/../phpunit.php'; Prado::using('System.Collections.TPagedList'); diff --git a/tests/unit/Collections/TPriorityListTest.php b/tests/unit/Collections/TPriorityListTest.php index 35c712ae..d1570302 100644 --- a/tests/unit/Collections/TPriorityListTest.php +++ b/tests/unit/Collections/TPriorityListTest.php @@ -1,5 +1,4 @@ <?php -require_once dirname(__FILE__) . '/../phpunit.php'; class PriorityListItem { diff --git a/tests/unit/Collections/TQueueTest.php b/tests/unit/Collections/TQueueTest.php index 167be249..efee7cb7 100644 --- a/tests/unit/Collections/TQueueTest.php +++ b/tests/unit/Collections/TQueueTest.php @@ -1,5 +1,4 @@ <?php -require_once dirname(__FILE__).'/../phpunit.php'; Prado::using('System.Collections.TQueue'); diff --git a/tests/unit/Collections/TStackTest.php b/tests/unit/Collections/TStackTest.php index 26406f36..89a42749 100644 --- a/tests/unit/Collections/TStackTest.php +++ b/tests/unit/Collections/TStackTest.php @@ -1,5 +1,4 @@ <?php -require_once dirname(__FILE__).'/../phpunit.php'; Prado::using('System.Collections.TStack'); |