Author: mvw
Date: 2007-12-24 04:58:25-0800
New Revision: 13994
Added:
trunk/tests/org/argouml/cognitive/checklist/
trunk/tests/org/argouml/cognitive/checklist/ui/
trunk/tests/org/argouml/cognitive/checklist/ui/TestTabChecklist.java (contents, props changed)
trunk/tests/org/argouml/cognitive/ui/
trunk/tests/org/argouml/cognitive/ui/TestTabToDo.java (contents, props changed)
trunk/tests/org/argouml/ui/TestTabs.java (contents, props changed)
Log:
Since now the tabs determine themselves what icon they show, it would be good to have junit tests for the presence of the icons.
Added: trunk/tests/org/argouml/cognitive/checklist/ui/TestTabChecklist.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/tests/org/argouml/cognitive/checklist/ui/TestTabChecklist.java?view=auto&rev=13994
==============================================================================
--- (empty file)
+++ trunk/tests/org/argouml/cognitive/checklist/ui/TestTabChecklist.java 2007-12-24 04:58:25-0800
@@ -0,0 +1,42 @@
+// $Id$
+// Copyright (c) 2007 The Regents of the University of California. All
+// Rights Reserved. Permission to use, copy, modify, and distribute this
+// software and its documentation without fee, and without a written
+// agreement is hereby granted, provided that the above copyright notice
+// and this paragraph appear in all copies. This software program and
+// documentation are copyrighted by The Regents of the University of
+// California. The software program and documentation are supplied "AS
+// IS", without any accompanying services from The Regents. The Regents
+// does not warrant that the operation of the program will be
+// uninterrupted or error-free. The end-user understands that the program
+// was developed for research purposes and is advised not to rely
+// exclusively on the program for any reason. IN NO EVENT SHALL THE
+// UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT,
+// SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS,
+// ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF
+// THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF
+// SUCH DAMAGE. THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY
+// WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE
+// PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
+// CALIFORNIA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT,
+// UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
+
+package org.argouml.cognitive.checklist.ui;
+
+import junit.framework.TestCase;
+
+import org.argouml.application.api.AbstractArgoJPanel;
+
+/**
+ * Tests for the TabChecklist class.
+ *
+ * @author Michiel
+ */
+public class TestTabChecklist extends TestCase {
+
+ public void testIcon() {
+ AbstractArgoJPanel tab = new TabChecklist();
+ assertTrue("TabChecklist has no icon", tab.getIcon() != null);
+ }
+}
Added: trunk/tests/org/argouml/cognitive/ui/TestTabToDo.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/tests/org/argouml/cognitive/ui/TestTabToDo.java?view=auto&rev=13994
==============================================================================
--- (empty file)
+++ trunk/tests/org/argouml/cognitive/ui/TestTabToDo.java 2007-12-24 04:58:25-0800
@@ -0,0 +1,43 @@
+// $Id$
+// Copyright (c) 2007 The Regents of the University of California. All
+// Rights Reserved. Permission to use, copy, modify, and distribute this
+// software and its documentation without fee, and without a written
+// agreement is hereby granted, provided that the above copyright notice
+// and this paragraph appear in all copies. This software program and
+// documentation are copyrighted by The Regents of the University of
+// California. The software program and documentation are supplied "AS
+// IS", without any accompanying services from The Regents. The Regents
+// does not warrant that the operation of the program will be
+// uninterrupted or error-free. The end-user understands that the program
+// was developed for research purposes and is advised not to rely
+// exclusively on the program for any reason. IN NO EVENT SHALL THE
+// UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT,
+// SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS,
+// ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF
+// THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF
+// SUCH DAMAGE. THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY
+// WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE
+// PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
+// CALIFORNIA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT,
+// UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
+
+package org.argouml.cognitive.ui;
+
+import junit.framework.TestCase;
+
+import org.argouml.application.api.AbstractArgoJPanel;
+
+/**
+ * Tests for the TabToDo class.
+ *
+ * @author Michiel
+ */
+public class TestTabToDo extends TestCase {
+
+ public void testIcon() {
+ AbstractArgoJPanel tab = new TabToDo();
+ assertTrue("TabToDo has no icon", tab.getIcon() != null);
+ }
+
+}
Added: trunk/tests/org/argouml/ui/TestTabs.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/tests/org/argouml/ui/TestTabs.java?view=auto&rev=13994
==============================================================================
--- (empty file)
+++ trunk/tests/org/argouml/ui/TestTabs.java 2007-12-24 04:58:25-0800
@@ -0,0 +1,86 @@
+// $Id$
+// Copyright (c) 2007 The Regents of the University of California. All
+// Rights Reserved. Permission to use, copy, modify, and distribute this
+// software and its documentation without fee, and without a written
+// agreement is hereby granted, provided that the above copyright notice
+// and this paragraph appear in all copies. This software program and
+// documentation are copyrighted by The Regents of the University of
+// California. The software program and documentation are supplied "AS
+// IS", without any accompanying services from The Regents. The Regents
+// does not warrant that the operation of the program will be
+// uninterrupted or error-free. The end-user understands that the program
+// was developed for research purposes and is advised not to rely
+// exclusively on the program for any reason. IN NO EVENT SHALL THE
+// UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT,
+// SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS,
+// ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF
+// THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF
+// SUCH DAMAGE. THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY
+// WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE
+// PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
+// CALIFORNIA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT,
+// UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
+
+package org.argouml.ui;
+
+import junit.framework.TestCase;
+
+import org.argouml.application.api.AbstractArgoJPanel;
+import org.argouml.model.InitializeModel;
+import org.argouml.uml.ui.TabConstraints;
+import org.argouml.uml.ui.TabDocumentation;
+import org.argouml.uml.ui.TabProps;
+import org.argouml.uml.ui.TabStereotype;
+import org.argouml.uml.ui.TabStyle;
+import org.argouml.uml.ui.TabTaggedValues;
+
+/**
+ *
+ * @author Michiel
+ */
+public class TestTabs extends TestCase {
+
+ /*
+ * @see junit.framework.TestCase#setUp()
+ */
+ public void setUp() throws Exception {
+ super.setUp();
+ InitializeModel.initializeDefault();
+ }
+
+ public void testTabTextIcon() {
+ AbstractArgoJPanel tab = new TabText("test");
+ assertTrue("TabText has no icon", tab.getIcon() != null);
+ }
+
+ public void testTabDocumentationIcon() {
+ AbstractArgoJPanel tab = new TabDocumentation();
+ assertTrue("TabDocumentation has no icon", tab.getIcon() != null);
+ }
+
+ public void testTabStereotypeIcon() {
+ AbstractArgoJPanel tab = new TabStereotype();
+ assertTrue("TabStereotype has no icon", tab.getIcon() != null);
+ }
+
+ public void testTabConstraintsIcon() {
+ AbstractArgoJPanel tab = new TabConstraints();
+ assertTrue("TabConstraints has no icon", tab.getIcon() != null);
+ }
+
+ public void testTabPropsIcon() {
+ AbstractArgoJPanel tab = new TabProps();
+ assertTrue("TabProps has no icon", tab.getIcon() != null);
+ }
+
+ public void testTabStyleIcon() {
+ AbstractArgoJPanel tab = new TabStyle();
+ assertTrue("TabStyle has no icon", tab.getIcon() != null);
+ }
+
+ public void testTabTaggedValuesIcon() {
+ AbstractArgoJPanel tab = new TabTaggedValues();
+ assertTrue("TabTaggedValues has no icon", tab.getIcon() != null);
+ }
+}
lmpx.com only provides a reader for public news (NNTP) servers. It is not
affiliated with the servers or forums shown here and is not responsible for
the content of articles, which is written by their respective authors.