Last active
August 29, 2015 14:05
-
-
Save yuu-ito/a94300b7fa2a4ca90957 to your computer and use it in GitHub Desktop.
RUnitのメモ
This file contains hidden or 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
| library('RUnit') | |
| source('./mysum.r') | |
| # refs | |
| # - http://cran.r-project.org/web/packages/RUnit/RUnit.pdf | |
| # - http://www.okada.jp.org/RWiki/?RUnit%20%A4%F2%BB%C8%A4%A6 | |
| test.mysum <- function(){ | |
| checkEqualsNumeric(mysum(1:10),55) | |
| } |
This file contains hidden or 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
| test: | |
| R -e "library(RUnit);runTestFile('0_test.r')" --slave |
This file contains hidden or 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
| mysum <- function(x){ | |
| # calc sum | |
| sum(x) | |
| } |
Author
Author
R option e の場合、.Rprofileは読み込まないので注意。
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
refs