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