Total Complexity | 3 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php namespace Chekote\NounStore\Store; |
||
9 | class GetAllTest extends StoreTest |
||
10 | { |
||
11 | public function setUp() |
||
12 | { |
||
13 | parent::setUp(); |
||
14 | |||
15 | /* @noinspection PhpUndefinedMethodInspection */ |
||
16 | Phake::when($this->store)->getAll(Phake::anyParameters())->thenCallParent(); |
||
|
|||
17 | } |
||
18 | |||
19 | /** |
||
20 | * Tests that Store::getAll throws exception when the specified $key does not exist. |
||
21 | */ |
||
22 | public function testGetAllThrowsExceptionWhenKeyDoesNotExist() |
||
27 | } |
||
28 | |||
29 | /** |
||
30 | * Tests that Store::getAll returns all values for specified key. |
||
31 | */ |
||
32 | public function testGetAllReturnsAllValuesForSpecifiedKey() |
||
41 |