| Total Complexity | 2 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php namespace Chekote\NounStore\Store; |
||
| 9 | abstract class StoreTest extends TestCase |
||
| 10 | { |
||
| 11 | /** @var Store */ |
||
| 12 | protected $store; |
||
| 13 | |||
| 14 | const KEY = 'Some Key'; |
||
| 15 | const FIRST_VALUE = 'The First Value'; |
||
| 16 | const SECOND_VALUE = 'The Second Value'; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Sets up the environment before each test. |
||
| 20 | */ |
||
| 21 | public function setUp() |
||
| 26 | } |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Tears down the environment after each test. |
||
| 30 | */ |
||
| 31 | public function tearDown() |
||
| 36 |