1   /*
2    * $Id: ImapConnectorTestCase.java 7968 2007-08-21 12:01:57Z holger $
3    * --------------------------------------------------------------------------------------
4    * Copyright (c) MuleSource, Inc.  All rights reserved.  http://www.mulesource.com
5    *
6    * The software in this package is published under the terms of the CPAL v1.0
7    * license, a copy of which has been included with this distribution in the
8    * LICENSE.txt file.
9    */
10  
11  package org.mule.providers.email;
12  
13  import org.mule.umo.provider.UMOConnector;
14  
15  /**
16   * Simple tests for pulling from an IMAP server.
17   */
18  public class ImapConnectorTestCase extends AbstractReceivingMailConnectorTestCase
19  {
20  
21      public ImapConnectorTestCase()
22      {
23          super("ImapConnector");
24      }
25      
26      public UMOConnector createConnector(boolean init) throws Exception
27      {
28          ImapConnector connector = new ImapConnector();
29          connector.setName(getConnectorName());
30          connector.setCheckFrequency(POLL_PERIOD_MS);
31          if (init)
32          {
33              connector.initialise();
34          }
35          return connector;
36      }
37  
38      public String getTestEndpointURI()
39      {
40          return getImapTestEndpointURI();
41      }
42  
43  }