| Total Complexity | 3 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | final class ExecutionModeTest extends TestCase |
||
| 11 | { |
||
| 12 | /** @var ExecutionMode */ |
||
| 13 | private $mode; |
||
| 14 | |||
| 15 | protected function setUp() : void |
||
| 16 | { |
||
| 17 | $this->mode = new ExecutionMode(); |
||
| 18 | } |
||
| 19 | |||
| 20 | public function testDefaultAutoCommitStatus() : void |
||
| 23 | } |
||
| 24 | |||
| 25 | public function testChangeAutoCommitStatus() : void |
||
| 32 | } |
||
| 33 | } |
||
| 34 |