gpt4 book ai didi

r - 在 testthat 中抛出警告而不是错误

转载 作者:行者123 更新时间:2023-12-04 07:15:08 26 4
gpt4 key购买 nike

我正在为一个包编写单元测试,有一些测试我不希望测试在失败时抛出错误,而是给出警告。
这不是我真正的代码,但假设我想测试以下内容:

add_x_y <- function(x, y) x + y
expect_equal( add_x_y(2, 2), 3 )
输出是一个错误:
Error: add_x_y(2, 2) not equal to 3.
1/1 mismatches
[1] 4 - 3 == 1
是否有一个变体或替代函数会为此检查抛出警告而不是错误?

最佳答案

如果没有特定于 testthat 的方法您可以使用一般错误处理来输出警告而不是错误。

expect_equal_or_warn <- function(...) tryCatch(expect_equal(...),
error = function(e) warning(e))

expect_equal_or_warn(add_x_y(2,2), 3)

Warning message:
add_x_y(2, 2) not equal to 3.
1/1 mismatches
[1] 4 - 3 == 1

关于r - 在 testthat 中抛出警告而不是错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68810816/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com