| Total Complexity | 2 | 
| Total Lines | 23 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php namespace Chekote\NounStore\Key; | ||
| 8 | abstract class KeyTest extends TestCase | ||
| 9 | { | ||
| 10 | const INVALID_KEY = "It's invalid because of the apostrophe"; | ||
| 11 | |||
| 12 | /** @var Key|Phake_IMock */ | ||
| 13 | protected $key; | ||
| 14 | |||
| 15 | /** | ||
| 16 | * Sets up the environment before each test. | ||
| 17 | */ | ||
| 18 | public function setUp() | ||
| 21 | } | ||
| 22 | |||
| 23 | /** | ||
| 24 | * Tears down the environment after each test. | ||
| 25 | */ | ||
| 26 | public function tearDown() | ||
| 33 |