Created
September 24, 2014 15:39
-
-
Save yannickwurm/676ce5dfd71a9ec17ebf to your computer and use it in GitHub Desktop.
R example unit testing output for cyberdojo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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