R/testObjExistsDS.R

Defines functions testObjExistsDS

#' @export

testObjExistsDS <- function(test.obj.name=NULL){
  
  test.obj.exists <- FALSE
  test.obj.class <- NULL
  
  #Restrict tests to settings where name does exist to avoid error termination
  
  if(exists(test.obj.name)){
    test.obj.exists <- TRUE
    test.obj <- eval(parse(text=test.obj.name))
    test.obj.class <- class(test.obj)
  }
  
  return(list(test.obj.exists=test.obj.exists,test.obj.class=test.obj.class))
  
}
paularaissa/dsMiceClient documentation built on Dec. 22, 2021, 6:43 a.m.