1 | <?php |
||
18 | class CreateAccountTest extends PHPUnit_Framework_TestCase { |
||
19 | |||
20 | private $service; |
||
21 | private $crypto; |
||
22 | private $command; |
||
23 | private $args = [ |
||
24 | 'user-id', |
||
25 | 'name', |
||
26 | 'email', |
||
27 | 'imap-host', |
||
28 | 'imap-port', |
||
29 | 'imap-ssl-mode', |
||
30 | 'imap-user', |
||
31 | 'imap-password', |
||
32 | 'smtp-host', |
||
33 | 'smtp-port', |
||
34 | 'smtp-ssl-mode', |
||
35 | 'smtp-user', |
||
36 | 'smtp-password', |
||
37 | ]; |
||
38 | |||
39 | protected function setUp() { |
||
49 | |||
50 | public function testName() { |
||
53 | |||
54 | public function testDescription() { |
||
57 | |||
58 | public function testArguments() { |
||
66 | |||
67 | } |
||
68 |