Conditions | 3 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 9 |
Ratio | 100 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
19 | protected function tearDown() |
||
20 | { |
||
21 | parent::tearDown(); |
||
22 | |||
23 | $testMember = Member::get()->filter(['Email' => '[email protected]'])->first(); |
||
24 | if ($testMember && $testMember->exists()) { |
||
25 | $testMember->delete(); |
||
26 | } |
||
27 | } |
||
28 | |||
66 |