| Total Complexity | 2 |
| Total Lines | 33 |
| Duplicated Lines | 0 % |
| Changes | 3 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php namespace Chekote\NounStore\Store; |
||
| 8 | abstract class StoreTest extends TestCase |
||
| 9 | { |
||
| 10 | /** @var Key|\Phake_IMock */ |
||
| 11 | protected $key; |
||
| 12 | |||
| 13 | /** @var Store|\Phake_IMock */ |
||
| 14 | protected $store; |
||
| 15 | |||
| 16 | const KEY = 'Some Key'; |
||
| 17 | const FIRST_VALUE = 'The First Value'; |
||
| 18 | const SECOND_VALUE = 'The Second Value'; |
||
| 19 | |||
| 20 | const MOST_RECENT_VALUE = self::SECOND_VALUE; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Sets up the environment before each test. |
||
| 24 | */ |
||
| 25 | public function setUp() |
||
| 32 | } |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Tears down the environment after each test. |
||
| 36 | */ |
||
| 37 | public function tearDown() |
||
| 43 |