use of org.cytoscape.model.CyColumn in project cytoscape-api by cytoscape.
the class AbstractCyRootNetworkTest method testGetNodeSharedNameColumn.
@Test
public void testGetNodeSharedNameColumn() {
CyTable shared = root.getSharedNodeTable();
CyColumn col = shared.getColumn(CyRootNetwork.SHARED_NAME);
assertNotNull(col);
assertEquals(String.class, col.getType());
}
Aggregations