01: /*
02: * Dumbster - a dummy SMTP server
03: * Copyright 2004 Jason Paul Kitchen
04: *
05: * Licensed under the Apache License, Version 2.0 (the "License");
06: * you may not use this file except in compliance with the License.
07: * You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */
17:
18: package com.dumbster.smtp;
19:
20: import junit.framework.TestCase;
21:
22: /**
23: * @author JeremyH
24: */
25: public class BindProblemTest extends TestCase {
26:
27: private SimpleSmtpServer server;
28:
29: /**
30: * @see junit.framework.TestCase#setUp()
31: */
32: protected void setUp() throws Exception {
33: super .setUp();
34: server = SimpleSmtpServer.start();
35: }
36:
37: /**
38: * @see junit.framework.TestCase#tearDown()
39: */
40: protected void tearDown() throws Exception {
41: server.stop();
42: super .tearDown();
43: }
44:
45: public void test1() {
46: assertTrue(true);
47: }
48:
49: public void test2() {
50: assertTrue(true);
51: }
52:
53: public void test3() {
54: assertTrue(true);
55: }
56:
57: public void test4() {
58: assertTrue(true);
59: }
60:
61: public void test5() {
62: assertTrue(true);
63: }
64: }
|