运行 测试 R 包的所有测试?

Run all testthat tests for an R package?

我用谷歌搜索,找到 this;因此, 运行 test_dir() (它出错),尝试从包根目录 test_dir(getwd()) (它也出错)。我也试过 test_package(),但如果参数是 NULL 或 returns 如果包名称作为字符串提供,它也会出错。

问题

如何从 R 控制台快速 运行 包中的所有测试(假设 getwd() 位于包根目录)?

备注

我知道你可以 R CMD check 但我不需要其他检查,只需要测试

你只需运行

devtools::test()

注意还有一些其他方法here