Total Complexity | 2 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php namespace Chekote\NounStore\Assert; |
||
10 | abstract class AssertTest extends TestCase |
||
11 | { |
||
12 | /** @var Assert|Phake_IMock */ |
||
13 | protected $assert; |
||
14 | |||
15 | /** @var Store|Phake_IMock */ |
||
16 | protected $store; |
||
17 | |||
18 | /** @var Key|Phake_IMock */ |
||
19 | protected $key; |
||
20 | |||
21 | /** |
||
22 | * Sets up the environment before each test. |
||
23 | */ |
||
24 | public function setUp() |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * Tears down the environment after each test. |
||
33 | */ |
||
34 | public function tearDown() |
||
41 |