Skip to content
Snippets Groups Projects
Commit 486fd056 authored by Daryl's avatar Daryl
Browse files

Decided just using jUnit assertions would suffice.

parent e6a275cc
No related branches found
No related tags found
No related merge requests found
......@@ -28,7 +28,7 @@ import org.junit.Test;
* and CONTACT1_EMAIL - (as recipient email address)
*/
public class GmailPluginTester extends BriarTestCase {
public class GmailPluginTester {
SimplexPluginCallback callback;
TransportProperties local, props1;
......@@ -98,10 +98,8 @@ Map<ContactId,TransportProperties> map = new HashMap<ContactId, TransportPropert
@Test
public void testGetID()
{
Mockery context = new Mockery();
GmailPlugin pluginTest = new GmailPlugin(Executors.newSingleThreadExecutor(), callback);
assertArrayEquals(GmailPlugin.TRANSPORT_ID,pluginTest.getId().getBytes());
context.assertIsSatisfied();
}
@Test
......@@ -125,11 +123,9 @@ Map<ContactId,TransportProperties> map = new HashMap<ContactId, TransportPropert
@Test
public void testGmailSMTP()
{
Mockery context = new Mockery();
GmailPlugin pluginTest = new GmailPlugin(Executors.newSingleThreadExecutor(), callback);
assertEquals(true, pluginTest.connectSMTP(test1));
assertEquals(false, pluginTest.connectSMTP(new ContactId(7)));
context.assertIsSatisfied();
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment