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

Used jMock so extended test class with BriarTestCase.

parent 3a953752
No related branches found
No related tags found
No related merge requests found
......@@ -11,6 +11,7 @@ import java.util.Set;
import java.util.Map.Entry;
import java.util.concurrent.Executors;
import net.sf.briar.BriarTestCase;
import net.sf.briar.api.ContactId;
import net.sf.briar.api.TransportConfig;
import net.sf.briar.api.TransportProperties;
......@@ -27,7 +28,7 @@ import org.junit.Test;
* and CONTACT1_EMAIL - (as recipient email address)
*/
public class GmailPluginTester {
public class GmailPluginTester extends BriarTestCase {
SimplexPluginCallback callback;
TransportProperties local, props1;
......@@ -124,9 +125,11 @@ 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