Author: maurelio1234
Date: 2008-07-11 05:05:36-0700
New Revision: 15238
Added:
branches/gsoc2008/work_criticsprofiles_maurelio1234/tests/org/argouml/profile/internal/ocl/TestCrOCL.java
branches/gsoc2008/work_criticsprofiles_maurelio1234/tests/org/argouml/profile/internal/ocl/TestCrOCL2.java
Modified:
branches/gsoc2008/work_criticsprofiles_maurelio1234/tests/org/argouml/profile/internal/ocl/TestOclInterpreter.java
Log:
writing tests for ocl interpreter
Added: branches/gsoc2008/work_criticsprofiles_maurelio1234/tests/org/argouml/profile/internal/ocl/TestCrOCL.java
Url: http://argouml.tigris.org/source/browse/argouml/branches/gsoc2008/work_criticsprofiles_maurelio1234/tests/org/argouml/profile/internal/ocl/TestCrOCL.java?view=auto&rev=15238
==============================================================================
--- (empty file)
+++ branches/gsoc2008/work_criticsprofiles_maurelio1234/tests/org/argouml/profile/internal/ocl/TestCrOCL.java 2008-07-11 05:05:36-0700
@@ -0,0 +1,66 @@
+// $Id: eclipse-argo-codetemplates.xml 11347 2006-10-26 22:37:44Z linus $
+// Copyright (c) 2008 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.profile.internal.ocl;
+
+import junit.framework.TestCase;
+
+import org.argouml.cognitive.Critic;
+import org.argouml.cognitive.Designer;
+import org.argouml.model.InitializeModel;
+import org.argouml.model.Model;
+
+/**
+ * Tests for the CrOCL class.
+ *
+ * @author maurelio1234
+ */
+public class TestCrOCL extends TestCase {
+
+ @Override
+ protected void setUp() throws Exception {
+ super.setUp();
+ InitializeModel.initializeDefault();
+ }
+
+ /**
+ * Test the <code>predicate2</code> operation
+ *
+ * @throws Exception
+ */
+ public void testPredicate() throws Exception {
+ Object obj1 = Model.getUseCasesFactory().createActor();
+ Object obj2 = Model.getActivityGraphsFactory().createPartition();
+
+ String ocl = "context Actor inv: 0 > 2";
+
+ CrOCL cr = new CrOCL(ocl);
+
+ assertEquals(cr.predicate2(obj1, Designer.theDesigner()),
+ Critic.PROBLEM_FOUND);
+ assertEquals(cr.predicate2(obj2, Designer.theDesigner()),
+ Critic.NO_PROBLEM);
+
+ }
+}
Added: branches/gsoc2008/work_criticsprofiles_maurelio1234/tests/org/argouml/profile/internal/ocl/TestCrOCL2.java
Url: http://argouml.tigris.org/source/browse/argouml/branches/gsoc2008/work_criticsprofiles_maurelio1234/tests/org/argouml/profile/internal/ocl/TestCrOCL2.java?view=auto&rev=15238
==============================================================================
--- (empty file)
+++ branches/gsoc2008/work_criticsprofiles_maurelio1234/tests/org/argouml/profile/internal/ocl/TestCrOCL2.java 2008-07-11 05:05:36-0700
@@ -0,0 +1,60 @@
+// $Id: eclipse-argo-codetemplates.xml 11347 2006-10-26 22:37:44Z linus $
+// Copyright (c) 2008 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.profile.internal.ocl;
+
+import junit.framework.TestCase;
+
+import org.argouml.cognitive.Critic;
+import org.argouml.cognitive.Designer;
+import org.argouml.model.InitializeModel;
+import org.argouml.model.Model;
+
+/**
+ * These test cases were written according to OCL 1.4 Spec Section 8
+ *
+ * @author maurelio1234
+ */
+public class TestCrOCL2 extends TestCase {
+
+ @Override
+ protected void setUp() throws Exception {
+ super.setUp();
+ InitializeModel.initializeDefault();
+ }
+
+ /**
+ * Test collections operations in objects
+ *
+ * @throws Exception
+ */
+ public void test6_5_4_2() throws Exception {
+ Object obj = Model.getUseCasesFactory().createActor();
+
+ CrOCL ocl = new CrOCL("context Actor inv: 2->size() = 1");
+
+ assertEquals(ocl.predicate2(obj, Designer.theDesigner()),
+ Critic.NO_PROBLEM);
+ }
+}
Modified: branches/gsoc2008/work_criticsprofiles_maurelio1234/tests/org/argouml/profile/internal/ocl/TestOclInterpreter.java
Url: http://argouml.tigris.org/source/browse/argouml/branches/gsoc2008/work_criticsprofiles_maurelio1234/tests/org/argouml/profile/internal/ocl/TestOclInterpreter.java?view=diff&rev=15238&p1=branches/gsoc2008/work_criticsprofiles_maurelio1234/tests/org/argouml/profile/internal/ocl/TestOclInterpreter.java&p2=branches/gsoc2008/work_criticsprofiles_maurelio1234/tests/org/argouml/profile/internal/ocl/TestOclInterpreter.java&r1=15237&r2=15238
==============================================================================
--- branches/gsoc2008/work_criticsprofiles_maurelio1234/tests/org/argouml/profile/internal/ocl/TestOclInterpreter.java (original)
+++ branches/gsoc2008/work_criticsprofiles_maurelio1234/tests/org/argouml/profile/internal/ocl/TestOclInterpreter.java 2008-07-11 05:05:36-0700
@@ -32,9 +32,9 @@
import org.argouml.model.Model;
/**
- * Tests for the ProfileJava class.
+ * Tests for the OclInterpreter class.
*
- * @author Luis Sergio Oliveira (euluis)
+ * @author maurelio1234
*/
public class TestOclInterpreter extends TestCase {
@@ -84,11 +84,11 @@
}
/**
- * Test <code>check</code> operation
+ * Test <code>check</code> operation (general)
*
* @throws Exception
*/
- public void testCheck() throws Exception {
+ public void testCheckGeneral() throws Exception {
Object obj = Model.getUseCasesFactory().createActor();
String ocl1 = "context Actor inv: 2 > 0";
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.