5 Jan
2018
5 Jan
'18
3:26 p.m.
AMDG On 01/05/2018 04:39 AM, Andrzej Krzemienski via Boost wrote:
<snip> But maybe there exists a direct solution in Boost.Test? Where I would just pass a list of values: `{1, 10, 1.0, "Y"}`
It is easy to deduce types from values:
``` template
mpl::liss Values(T... values); using test_types = decltype(Values(1, 10, 1.0, "Y")); ```
Does something like this exist, or ois it a reasonable extension?
It isn't supported, but seems to be intended at some point: http://www.boost.org/libs/test/doc/html/boost_test/tests_organization/test_c... In Christ, Steven Watanabe