当我尝试在test_dir函数中定义路径时,会显示该错误:

Error in UseMethod("xml_add_child") : no applicable method for 'xml_add_child' applied to an object of class "NULL"


我的testthat.R文件具有以下行:

library(testthat)
library(package)

options(testthat.junit.output_file = "test-out.xml")
test_dir("tests/testthat/0_utils/", reporter = 'junit')
test_package("package")


我的测试位于“ tests / testthat / 0_utils”文件夹中。我怎么解决这个问题?

最佳答案

要解决此问题,您必须确保所有测试均在第一行中以context()开头。

关于r - “UseMethod(” xml_add_child“)中的错误” test_dir不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/54644953/

10-09 00:15