Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php namespace Chekote\NounStore\Assert; |
||
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 = [StoreTest::KEY => [StoreTest::FIRST_VALUE, StoreTest::SECOND_VALUE]]; |
||
32 | |||
33 | $this->assert = Phake::strictMockWithConstructor(Assert::class, $this->store, $this->key); |
||
34 | } |
||
44 |