001: /*
002: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
003: *
004: * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
005: *
006: * The contents of this file are subject to the terms of either the GNU
007: * General Public License Version 2 only ("GPL") or the Common
008: * Development and Distribution License("CDDL") (collectively, the
009: * "License"). You may not use this file except in compliance with the
010: * License. You can obtain a copy of the License at
011: * http://www.netbeans.org/cddl-gplv2.html
012: * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
013: * specific language governing permissions and limitations under the
014: * License. When distributing the software, include this License Header
015: * Notice in each file and include the License file at
016: * nbbuild/licenses/CDDL-GPL-2-CP. Sun designates this
017: * particular file as subject to the "Classpath" exception as provided
018: * by Sun in the GPL Version 2 section of the License file that
019: * accompanied this code. If applicable, add the following below the
020: * License Header, with the fields enclosed by brackets [] replaced by
021: * your own identifying information:
022: * "Portions Copyrighted [year] [name of copyright owner]"
023: *
024: * Contributor(s):
025: *
026: * The Original Software is NetBeans. The Initial Developer of the Original
027: * Software is Sun Microsystems, Inc. Portions Copyright 2002 Sun
028: * Microsystems, Inc. All Rights Reserved.
029: *
030: * If you wish your version of this file to be governed by only the CDDL
031: * or only the GPL Version 2, indicate your decision by adding
032: * "[Contributor] elects to include this software in this distribution
033: * under the [CDDL or GPL Version 2] license." If you do not indicate a
034: * single choice of license, a recipient has the option to distribute
035: * your version of this file under either the CDDL, the GPL Version 2 or
036: * to extend the choice of license to its licensees as provided above.
037: * However, if you add GPL Version 2 code and therefore, elected the GPL
038: * Version 2 license, then the option applies only if the new code is
039: * made subject to such option by the copyright holder.
040: */
041:
042: package org.netbeans.modules.tasklist.trampoline;
043:
044: import java.awt.Image;
045: import java.awt.image.BufferedImage;
046: import junit.framework.*;
047: import org.netbeans.junit.*;
048: import org.netbeans.modules.tasklist.trampoline.TaskGroupFactory;
049: import org.openide.filesystems.FileObject;
050: import org.openide.filesystems.Repository;
051:
052: /**
053: * Tests for TaskGroup class.
054: *
055: * @author S. Aubrecht
056: */
057: public class TaskGroupTest extends NbTestCase {
058:
059: public TaskGroupTest(String name) {
060: super (name);
061: }
062:
063: @Override
064: protected void setUp() throws Exception {
065: super .setUp();
066: }
067:
068: /**
069: * @param args the command line arguments
070: */
071: public static void main(java.lang.String[] args) {
072: junit.textui.TestRunner.run(suite());
073: }
074:
075: public static Test suite() {
076: TestSuite suite = new NbTestSuite(TaskGroupTest.class);
077:
078: return suite;
079: }
080:
081: public void testGetters() {
082: String name = "group name";
083: String displayName = "group display name";
084: String description = "group description";
085: Image icon = new BufferedImage(1, 1, BufferedImage.TYPE_INT_RGB);
086:
087: TaskGroup group = new TaskGroup(name, displayName, description,
088: icon);
089:
090: assertEquals(name, group.getName());
091: assertEquals(displayName, group.getDisplayName());
092: assertEquals(description, group.getDescription());
093: assertEquals(icon, group.getIcon());
094: }
095:
096: public void testNullValues() {
097: String name = "group name";
098: String displayName = "group display name";
099: String description = "group description";
100: Image icon = new BufferedImage(1, 1, BufferedImage.TYPE_INT_RGB);
101:
102: try {
103: new TaskGroup(null, displayName, description, icon);
104: fail("name cannot be null");
105: } catch (AssertionError e) {
106: //that's what we want
107: }
108:
109: try {
110: new TaskGroup(name, null, description, icon);
111: fail("display name cannot be null");
112: } catch (AssertionError e) {
113: //that's what we want
114: }
115:
116: try {
117: new TaskGroup(name, displayName, null, icon);
118: } catch (AssertionError e) {
119: fail("null description is allowed");
120: }
121:
122: try {
123: new TaskGroup(name, displayName, description, null);
124: fail("icon cannot be null");
125: } catch (AssertionError e) {
126: //that's what we want
127: }
128: }
129: }
|