1 package com.ozacc.mail.fetch.impl;
2
3 import junit.framework.TestCase;
4
5 import org.apache.log4j.BasicConfigurator;
6
7 /***
8 *
9 * @since 1.2
10 * @author Tomohiro Otsuka
11 * @version $Id: FetchMailProImplRealTest.java,v 1.1.2.3 2005/01/18 07:29:31 otsuka Exp $
12 */
13 public class FetchMailProImplRealTest extends TestCase {
14
15 private String username = "username";
16
17 private String password = "password";
18
19 private String protocol = "pop3";
20
21 private String host = "localhost";
22
23 private FetchMailProImpl fetchMail;
24
25
26
27
28 protected void setUp() throws Exception {
29 super.setUp();
30 BasicConfigurator.configure();
31
32 fetchMail = new FetchMailProImpl();
33 fetchMail.setHost(host);
34 fetchMail.setProtocol(protocol);
35 fetchMail.setUsername(username);
36 fetchMail.setPassword(password);
37 }
38
39
40
41
42 protected void tearDown() throws Exception {
43 super.tearDown();
44 BasicConfigurator.resetConfiguration();
45 }
46
47
48
49
50
51
52
53 /***
54 * ¥Æ¥¹¥È¥±¡¼¥¹¤¬¤Ò¤È¤Ä¤â¤Ê¤¤¤È¥Ó¥?¥É»?¤Ë¥¨¥é¡¼¤Ë¤Ê¤?¤Î¤Ç¡¢¥À¥ß¡¼¡£
55 */
56 public void testDummy() {
57 assertTrue(true);
58 }
59 }