gpt4 book ai didi

c++ - 如何编写带有值模板的doctest测试用例?

转载 作者:行者123 更新时间:2023-12-02 10:07:11 28 4
gpt4 key购买 nike

在doctest(C++测试框架)中,我们可以编写:

TEST_SUITE("foo") {

TEST_CASE_TEMPLATE("bar", T, t1, t2, t3) {
/* code using template parameter T */
}

}

这有效-如果 t1t2t3是类型。它的实现方式是doctest生成代码,包括
template<typename T>
inline void DOCTEST_ANONYMOUS(_DOCTEST_ANON_TMP_)()

并在 T之后为宏参数调用此函数。这显然不适用于值参数,例如 TEST_CASE_TEMPLATE("bar", MyType, v1, v2, v3)

我们可以使用doctest在数字参数上创建模板吗?

最佳答案

一个丑陋的解决方案(不使用任何doctest工具)将是:

template <typename T, T Value>
struct value_as_type { static constexpr const T value { Value }; };
然后更换
TEST_CASE_TEMPLATE("bar", T, t1, t2, t3) { /*... etc ... */ }
与:
TEST_CASE_TEMPLATE("bar", MyType, 
value_as_type<MyType, v1>,
value_as_type<MyType, v2>,
value_as_type<MyType, v3>)
{
constexpr const MyType val { MyType::value };
/*... etc ... */
}

关于c++ - 如何编写带有值模板的doctest测试用例?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59634608/

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