cytoscape / cyjShiny

An R/shiny widget for cytoscape.js
Other
92 stars 28 forks source link

automated testing of selectFirstNeighbors #48

Open paul-shannon opened 3 years ago

paul-shannon commented 3 years ago

@Dharna5599,

Following (closely!) the programming style and logic of inst/unitTests/test_selection.R, please create a test script test_firstNeighborSelection.R which invokes, and tests the reliability, of this function in R/cyjShiny.R:

' selectFirstNeighbors of the currently selected nodes

'

' @param session a Shiny Server session object.

'

' @aliases selectFirstNeighbors

' @rdname selectFirstNeighbors

'

' @export

'

selectFirstNeighbors <- function(session) { session$sendCustomMessage(type = "sfn", message = list()) } # selectFirstNeighbors

Dharna5599 commented 3 years ago

ok @paul-shannon, I will work on this