From 5e78459970d0bb9333b232db940b70b646238ce3 Mon Sep 17 00:00:00 2001 From: Florent Viel Date: Tue, 26 Aug 2014 18:25:15 +0200 Subject: [PATCH] Fix: launch list test before create test --- tests/Fetch/Test/ServerTest.php | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/tests/Fetch/Test/ServerTest.php b/tests/Fetch/Test/ServerTest.php index ee0566d..128e424 100644 --- a/tests/Fetch/Test/ServerTest.php +++ b/tests/Fetch/Test/ServerTest.php @@ -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);