001: /* Copyright (c) 2001 - 2007 TOPP - www.openplans.org. All rights reserved.
002: * This code is licensed under the GPL 2.0 license, availible at the root
003: * application directory.
004: */
005: package org.vfny.geoserver.global.dto;
006:
007: import java.net.URL;
008:
009: import junit.framework.TestCase;
010:
011: /**
012: * ServiceDTOTest JUnit Test.
013: *
014: * @author jgarnett, Refractions Research, Inc.
015: * @author $Author: jive $ (last modification)
016: * @version $Id: ServiceDTOTest.java 6326 2007-03-15 18:36:40Z jdeolive $
017: */
018: public class ServiceDTOTest extends TestCase {
019: ServiceDTO dto;
020:
021: /**
022: * Constructor for ServiceDTOTest.
023: *
024: * @param name
025: */
026: public ServiceDTOTest(String name) {
027: super (name);
028: }
029:
030: /*
031: * @see TestCase#setUp()
032: */
033: protected void setUp() throws Exception {
034: super .setUp();
035:
036: dto = new ServiceDTO();
037: dto.setAbstract("abstract");
038: dto.setAccessConstraints("NONE");
039: dto.setEnabled(true);
040: dto.setFees("NONE");
041: dto.setKeywords(new String[0]);
042: dto.setMaintainer("junit");
043: dto.setName("TestService");
044: dto.setOnlineResource(new URL("http://localhost/"));
045: dto.setTitle("Title");
046: }
047:
048: /*
049: * @see TestCase#tearDown()
050: */
051: protected void tearDown() throws Exception {
052: super .tearDown();
053: dto = null;
054: }
055:
056: // public void testHashCode() {
057: // assertEquals(0, new ServiceDTO().hashCode());
058: // assertTrue(0 != dto.hashCode());
059: // }
060:
061: /*
062: * Test for void ServiceDTO()
063: */
064: public void testServiceDTO() {
065: }
066:
067: /*
068: * Test for void ServiceDTO(ServiceDTO)
069: */
070: public void testServiceDTOServiceDTO() {
071: }
072:
073: /*
074: * Test for Object clone()
075: */
076: public void testClone() {
077: }
078:
079: /*
080: * Test for boolean equals(Object)
081: */
082: public void testEqualsObject() {
083: }
084:
085: public void testGetName() {
086: }
087:
088: public void testGetOnlineResource() {
089: }
090:
091: public void testGetTitle() {
092: }
093:
094: public void testSetName() {
095: }
096:
097: public void testSetOnlineResource() {
098: }
099:
100: public void testSetTitle() {
101: }
102:
103: public void testGetAbstract() {
104: }
105:
106: public void testGetAccessConstraints() {
107: }
108:
109: public void testIsEnabled() {
110: }
111:
112: public void testGetFees() {
113: }
114:
115: public void testGetKeywords() {
116: }
117:
118: public void testGetMaintainer() {
119: }
120:
121: public void testSetAbstract() {
122: }
123:
124: public void testSetAccessConstraints() {
125: }
126:
127: public void testSetEnabled() {
128: }
129:
130: public void testSetFees() {
131: }
132:
133: public void testSetKeywords() {
134: }
135:
136: public void testSetMaintainer() {
137: }
138: }
|