Initialize settings in setUp()

This commit is contained in:
Jan Berkel 2015-01-13 10:05:15 +01:00
parent f7da704007
commit e98f323222
1 changed files with 7 additions and 2 deletions

View File

@ -17,15 +17,16 @@ import static org.junit.Assert.assertArrayEquals;
public class ImapConnectionTest extends TestCase {
private static final String[] CAPABILITIES = new String[] { "IMAP4REV1", "LITERAL+", "QUOTA" };
private StubMailServer stubMailServer;
private ImapConnection connection;
private TestImapSettings settings = new TestImapSettings(UserForImap.TEST_USER);
private TestImapSettings settings;
@Override
public void setUp() throws Exception {
super.setUp();
stubMailServer = new StubMailServer();
settings = new TestImapSettings(UserForImap.TEST_USER);
connection = new ImapConnection(settings, null, null);
}
@ -46,6 +47,10 @@ public class ImapConnectionTest extends TestCase {
}
}
public void testConnectionIsInitiallyClosed() throws Exception {
assertFalse(connection.isOpen());
}
public void testSuccessfulOpenConnectionTogglesOpenState() throws Exception {
connection.open();
assertTrue(connection.isOpen());