mirror of
https://github.com/retailcrm/Fetch.git
synced 2025-04-04 22:03:36 +03:00
Fix: launch list test before create test
This commit is contained in:
parent
8d29ddeb73
commit
5e78459970
1 changed files with 10 additions and 10 deletions
|
@ -164,6 +164,16 @@ class ServerTest extends \PHPUnit_Framework_TestCase
|
|||
$this->assertFalse($server->hasMailBox('Cheese'), 'Does not have mailbox "Cheese"');
|
||||
}
|
||||
|
||||
public function testListMailbox()
|
||||
{
|
||||
$server = Static::getServer();
|
||||
$spec = sprintf('{%s:143/novalidate-cert}', TESTING_SERVER_HOST);
|
||||
|
||||
$list = $server->listMailbox('*');
|
||||
$this->assertContains($spec.'Sent', $list, 'Has mailbox "Sent"');
|
||||
$this->assertNotContains($spec.'Cheese', $list, 'Does not have mailbox "Cheese"');
|
||||
}
|
||||
|
||||
public function testCreateMailbox()
|
||||
{
|
||||
$server = Static::getServer();
|
||||
|
@ -205,16 +215,6 @@ class ServerTest extends \PHPUnit_Framework_TestCase
|
|||
$this->assertFalse($server->getMessageByUid(12), 'Message successfully expunged');
|
||||
}
|
||||
|
||||
public function testListMailbox()
|
||||
{
|
||||
$server = Static::getServer();
|
||||
$spec = sprintf('{%s:143/novalidate-cert}', TESTING_SERVER_HOST);
|
||||
|
||||
$list = $server->listMailbox('*');
|
||||
$this->assertContains($spec.'Sent', $list);
|
||||
$this->assertNotContains($spec.'Cheese', $list);
|
||||
}
|
||||
|
||||
public static function getServer()
|
||||
{
|
||||
$server = new Server(TESTING_SERVER_HOST, 143);
|
||||
|
|
Loading…
Add table
Reference in a new issue