Author: mes
Date: 2011-08-09 13:56:23 -0700 (Tue, 09 Aug 2011)
New Revision: 26501
Modified:
core3/impl/trunk/model-impl/impl/src/test/java/org/cytoscape/model/NetworkTestSupport.java
core3/impl/trunk/model-impl/impl/src/test/java/org/cytoscape/model/TableTestSupport.java
Log:
got test support classes working
Modified:
core3/impl/trunk/model-impl/impl/src/test/java/org/cytoscape/model/NetworkTestSupport.java
===================================================================
---
core3/impl/trunk/model-impl/impl/src/test/java/org/cytoscape/model/NetworkTestSupport.java
2011-08-09 20:54:27 UTC (rev 26500)
+++
core3/impl/trunk/model-impl/impl/src/test/java/org/cytoscape/model/NetworkTestSupport.java
2011-08-09 20:56:23 UTC (rev 26501)
@@ -1,5 +1,5 @@
-package org.cytoscape.test.support;
+package org.cytoscape.model;
import org.cytoscape.equations.Interpreter;
import org.cytoscape.event.CyEventHelper;
Modified:
core3/impl/trunk/model-impl/impl/src/test/java/org/cytoscape/model/TableTestSupport.java
===================================================================
---
core3/impl/trunk/model-impl/impl/src/test/java/org/cytoscape/model/TableTestSupport.java
2011-08-09 20:54:27 UTC (rev 26500)
+++
core3/impl/trunk/model-impl/impl/src/test/java/org/cytoscape/model/TableTestSupport.java
2011-08-09 20:56:23 UTC (rev 26501)
@@ -1,6 +1,6 @@
-package org.cytoscape.test.support;
+package org.cytoscape.model;
import org.cytoscape.event.CyEventHelper;
import org.cytoscape.event.DummyCyEventHelper;
@@ -13,17 +13,17 @@
import static org.mockito.Mockito.*;
-public class DataTableTestSupport {
+public class TableTestSupport {
protected CyTableFactory tableFactory;
protected DummyCyEventHelper eventHelper;
- public DataTableTestSupport() {
+ public TableTestSupport() {
eventHelper = new DummyCyEventHelper();
tableFactory = new CyTableFactoryImpl( eventHelper,
mock(CyTableManagerImpl.class), mock(Interpreter.class) );
}
- public CyTableFactory getDataTableFactory() {
+ public CyTableFactory getTableFactory() {
return tableFactory;
}
--
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.