01: /*
02: * Copyright (C) 2006 Methodhead Software LLC. All rights reserved.
03: *
04: * This file is part of TransferCM.
05: *
06: * TransferCM is free software; you can redistribute it and/or modify it under the
07: * terms of the GNU General Public License as published by the Free Software
08: * Foundation; either version 2 of the License, or (at your option) any later
09: * version.
10: *
11: * TransferCM is distributed in the hope that it will be useful, but WITHOUT ANY
12: * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13: * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
14: * details.
15: *
16: * You should have received a copy of the GNU General Public License along with
17: * TransferCM; if not, write to the Free Software Foundation, Inc., 51 Franklin St,
18: * Fifth Floor, Boston, MA 02110-1301 USA
19: */
20:
21: package com.methodhead.reg;
22:
23: import java.util.*;
24: import java.sql.*;
25: import java.io.*;
26: import junit.framework.*;
27: import org.apache.log4j.*;
28: import com.methodhead.persistable.*;
29: import com.methodhead.test.*;
30:
31: public class ContactTest extends TestCase {
32:
33: Contact contact = null;
34:
35: static {
36: TestUtils.initLogger();
37: TestUtils.initDb();
38: }
39:
40: public ContactTest(String name) {
41: super (name);
42: }
43:
44: protected void setUp() {
45: try {
46: ConnectionSingleton.runBatchUpdate(new FileReader(
47: "webapp/WEB-INF/db/transfer-reset.sql"));
48: } catch (Exception e) {
49: fail(e.getMessage());
50: }
51: }
52:
53: protected void tearDown() {
54: }
55:
56: public void testGetFullName() {
57: contact = new Contact();
58:
59: //
60: // with blank first and last name
61: //
62: assertEquals("[Missing Name]", contact.getFullName());
63:
64: //
65: // with first name only
66: //
67: contact.setString("firstname", "First");
68: assertEquals("First", contact.getFullName());
69:
70: //
71: // with both first and last name
72: //
73: contact.setString("lastname", "Last");
74: assertEquals("Last, First", contact.getFullName());
75:
76: //
77: // with last name only
78: //
79: contact.setString("firstname", "");
80: assertEquals("Last", contact.getFullName());
81: }
82: }
|