1 | <?php |
||
20 | abstract class AbstractTestCase extends TestCase |
||
21 | { |
||
22 | /** |
||
23 | * @var Prophet |
||
24 | */ |
||
25 | protected $prophet; |
||
26 | |||
27 | /** |
||
28 | * {@inheritdoc} |
||
29 | */ |
||
30 | protected function setUp() |
||
31 | { |
||
32 | $this->prophet = new Prophet(); |
||
33 | } |
||
34 | |||
35 | /** |
||
36 | * {@inheritdoc} |
||
37 | */ |
||
38 | protected function tearDown() |
||
39 | { |
||
40 | $this->prophet->checkPredictions(); |
||
41 | } |
||
42 | } |
||
43 |