1 | <?php |
||
15 | class CreateAccountTest extends PHPUnit_Framework_TestCase { |
||
16 | |||
17 | private $service; |
||
18 | private $crypto; |
||
19 | private $command; |
||
20 | private $args = [ |
||
21 | 'user-id', |
||
22 | 'name', |
||
23 | 'email', |
||
24 | 'imap-host', |
||
25 | 'imap-port', |
||
26 | 'imap-ssl-mode', |
||
27 | 'imap-user', |
||
28 | 'imap-password', |
||
29 | 'smtp-host', |
||
30 | 'smtp-port', |
||
31 | 'smtp-ssl-mode', |
||
32 | 'smtp-user', |
||
33 | 'smtp-password', |
||
34 | ]; |
||
35 | |||
36 | protected function setUp() { |
||
46 | |||
47 | public function testName() { |
||
50 | |||
51 | public function testDescription() { |
||
54 | |||
55 | public function testArguments() { |
||
63 | |||
64 | } |
||
65 |