Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
39 | protected function setUp() { |
||
40 | parent::setUp(); |
||
41 | |||
42 | $this->service = $this->getMockBuilder('\OCA\Mail\Service\AccountService') |
||
43 | ->disableOriginalConstructor() |
||
44 | ->getMock(); |
||
45 | $this->crypto = $this->getMock('\OCP\Security\ICrypto'); |
||
46 | |||
47 | $this->command = new CreateAccount($this->service, $this->crypto); |
||
48 | } |
||
49 | |||
68 |