| 1 | <?php |
||
| 17 | class CountableTraitTest extends \PHPUnit_Framework_TestCase |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @var BaseCollection |
||
| 21 | */ |
||
| 22 | private $collection; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * {@inheritdoc} |
||
| 26 | */ |
||
| 27 | public function setUp() |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Verify collection implements ArrayAccess interface |
||
| 36 | * |
||
| 37 | * @return void |
||
| 38 | */ |
||
| 39 | public function testImplementsInterface() |
||
| 43 | |||
| 44 | /** |
||
| 45 | * Test collection count method |
||
| 46 | * |
||
| 47 | * @return void |
||
| 48 | */ |
||
| 49 | public function testCount() |
||
| 53 | } |
||
| 54 |