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.shim;
22:
23: import java.util.*;
24: import java.sql.*;
25: import junit.framework.*;
26: import org.apache.log4j.*;
27: import com.methodhead.persistable.*;
28: import com.methodhead.test.*;
29:
30: public class LinkTest extends TestCase {
31:
32: public LinkTest(String name) {
33: super (name);
34: }
35:
36: protected void setUp() {
37: //setLogLevel( Level.DEBUG );
38: try {
39: } catch (Exception e) {
40: fail(e.getMessage());
41: }
42: }
43:
44: protected void tearDown() {
45: }
46:
47: public void testProperties() {
48: try {
49: Link link = new Link();
50:
51: assertEquals("", link.getTitle());
52: link.setTitle("Title");
53: assertEquals("Title", link.getTitle());
54:
55: assertEquals(0, link.getPageId());
56: link.setPageId(666);
57: assertEquals(666, link.getPageId());
58:
59: assertEquals("", link.getAlias());
60: link.setAlias("Alias");
61: assertEquals("Alias", link.getAlias());
62:
63: assertEquals(false, link.getHidden());
64: link.setHidden(true);
65: assertEquals(true, link.getHidden());
66: } catch (Exception e) {
67: e.printStackTrace();
68: fail();
69: }
70: }
71: }
|