Author: mes
Date: 2010-10-28 13:22:11 -0700 (Thu, 28 Oct 2010)
New Revision: 22576

Modified:
   core3/vizmap-api/trunk/pom.xml
   
core3/vizmap-api/trunk/src/test/java/org/cytoscape/view/vizmap/VizmapEventsTest.java
Log:
updated pom for release

Modified: core3/vizmap-api/trunk/pom.xml
===================================================================
--- core3/vizmap-api/trunk/pom.xml      2010-10-28 20:19:24 UTC (rev 22575)
+++ core3/vizmap-api/trunk/pom.xml      2010-10-28 20:22:11 UTC (rev 22576)
@@ -6,7 +6,7 @@
        <parent>
                <artifactId>parent</artifactId>
                <groupId>org.cytoscape</groupId>
-               <version>1.0-SNAPSHOT</version>
+               <version>3.0.0-alpha1</version>
        </parent>
 
        <properties>
@@ -124,7 +124,7 @@
                <dependency>
                        <groupId>org.cytoscape</groupId>
                        <artifactId>viewmodel-api</artifactId>
-                       <version>1.0-SNAPSHOT</version>
+                       <version>3.0.0-alpha1</version>
                </dependency>
 
                <!-- Testing -->
@@ -135,15 +135,15 @@
                        <scope>test</scope>
                </dependency>
                <dependency>
-                       <groupId>org.easymock</groupId>
-                       <artifactId>easymock</artifactId>
-                       <version>${easymock.version}</version>
+                       <groupId>org.mockito</groupId>
+                       <artifactId>mockito-all</artifactId>
+                       <version>1.8.1</version>
                        <scope>test</scope>
                </dependency>
                <dependency>
                        <groupId>org.cytoscape</groupId>
                        <artifactId>presentation-api</artifactId>
-                       <version>1.0-SNAPSHOT</version>
+                       <version>3.0.0-alpha1</version>
                        <scope>test</scope>
                </dependency>
        </dependencies>

Modified: 
core3/vizmap-api/trunk/src/test/java/org/cytoscape/view/vizmap/VizmapEventsTest.java
===================================================================
--- 
core3/vizmap-api/trunk/src/test/java/org/cytoscape/view/vizmap/VizmapEventsTest.java
        2010-10-28 20:19:24 UTC (rev 22575)
+++ 
core3/vizmap-api/trunk/src/test/java/org/cytoscape/view/vizmap/VizmapEventsTest.java
        2010-10-28 20:22:11 UTC (rev 22576)
@@ -1,7 +1,7 @@
 package org.cytoscape.view.vizmap;
 
 
-import static org.easymock.EasyMock.createMock;
+import static org.mockito.Mockito.*;
 import static org.junit.Assert.assertEquals;
 import static org.junit.Assert.assertNotNull;
 
@@ -19,9 +19,9 @@
        
        @Before
        public void setUp() throws Exception {
-               style = createMock(VisualStyle.class);
-               factory = createMock(VisualStyleFactory.class);
-               manager = createMock(VisualMappingManager.class);
+               style = mock(VisualStyle.class);
+               factory = mock(VisualStyleFactory.class);
+               manager = mock(VisualMappingManager.class);
        }
 
        @After

-- 
You received this message because you are subscribed to the Google Groups 
"cytoscape-cvs" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/cytoscape-cvs?hl=en.

Reply via email to