| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php namespace Chekote\NounStore\Store; |
||
| 25 | public function setUp() |
||
| 26 | { |
||
| 27 | $this->key = Phake::strictMock(Key::class); |
||
| 28 | $this->store = Phake::strictMockWithConstructor(Store::class, $this->key); |
||
|
|
|||
| 29 | |||
| 30 | /* @noinspection PhpUndefinedFieldInspection */ |
||
| 31 | Phake::makeVisible($this->store)->nouns = [self::KEY => [self::FIRST_VALUE, self::SECOND_VALUE]]; |
||
| 32 | } |
||
| 43 |