Skip to content

Instantly share code, notes, and snippets.

@yannickwurm
Created September 24, 2014 15:39
Show Gist options
  • Save yannickwurm/676ce5dfd71a9ec17ebf to your computer and use it in GitHub Desktop.
Save yannickwurm/676ce5dfd71a9ec17ebf to your computer and use it in GitHub Desktop.
R example unit testing output for cyberdojo
install.packages('RUnit') # only once for the machien
library(RUnit) # every time R starts
d = function() { asdf( }
# Output: Error: unexpected '}' in "d = function() { asdf( }"
checkEquals(d(), 32)
# Output: Error in all.equal(target, current, tolerance = tolerance, ...) :
# Output: could not find function "d"
d = function() { return(32) }
checkEquals(d(), 32)
# Output: [1] TRUE
checkEquals(d(), 34)
#Output: Error in checkEquals(d(), 34) : Mean relative difference: 0.0625
checkEquals(d(), 34)
#Output: Error in checkEquals(d(), 34) : Mean relative difference: 0.0625
checkEquals(d(), "asdf")
#Output: Error in checkEquals(d(), "asdf") : Modes: numeric, character
#Output: target is numeric, current is character
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment