1   /*
2    * $Id: Pop3ConnectorTestCase.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 a POP3 server.
17   */
18  public class Pop3ConnectorTestCase extends AbstractReceivingMailConnectorTestCase
19  {
20  
21      public Pop3ConnectorTestCase()
22      {
23          super("Pop3Connector");
24      }
25      
26      public UMOConnector createConnector(boolean init) throws Exception
27      {
28          Pop3Connector connector = new Pop3Connector();
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 getPop3TestEndpointURI();
41      }
42  
43  }