summaryrefslogtreecommitdiff
path: root/Examples/test-suite/r/unittest.R
blob: 81c590a3f40b24e7bef23c954418997dec251273 (plain)
1
2
3
4
5
6
7
8
9
unittest <- function (x,y) {
if (x==y) print("PASS") 
else print("FAIL") 
}

unittesttol <- function(x,y,z) {
if (abs(x-y) < z) print("PASS")
else print("FAIL")
}