| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 9 | 
| Code Lines | 4 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php namespace Chekote\NounStore\Store; | ||
| 18 | public function testResetSetsNounsToEmptyArray() | ||
| 19 |     { | ||
| 20 | $this->store->reset(); | ||
| 21 | |||
| 22 | $store = Phake::makeVisible($this->store); | ||
| 23 | /* @noinspection PhpUndefinedFieldInspection */ | ||
| 24 |         { | ||
| 25 |             $this->assertEquals('array', gettype($store->nouns)); | ||
| 26 | $this->assertCount(0, $store->nouns); | ||
| 27 | } | ||
| 30 |