tap: use rval-references for test args
This commit is contained in:
parent
1da6916b84
commit
c745658919
18
tap.hpp
18
tap.hpp
@ -45,34 +45,34 @@ namespace util { namespace TAP {
|
|||||||
|
|
||||||
//---------------------------------------------------------------------
|
//---------------------------------------------------------------------
|
||||||
template <typename T, typename U, typename ...Args>
|
template <typename T, typename U, typename ...Args>
|
||||||
void expect_eq (const T&, const U&, const std::string &fmt, Args&...);
|
void expect_eq (const T&, const U&, const std::string &fmt, Args&&...);
|
||||||
|
|
||||||
template <typename T, typename U, typename ...Args>
|
template <typename T, typename U, typename ...Args>
|
||||||
void expect_neq (const T&, const U&, const std::string &fmt, Args&...);
|
void expect_neq (const T&, const U&, const std::string &fmt, Args&&...);
|
||||||
|
|
||||||
//---------------------------------------------------------------------
|
//---------------------------------------------------------------------
|
||||||
template <typename T, typename U, typename ...Args>
|
template <typename T, typename U, typename ...Args>
|
||||||
void expect_gt (const T&, const U&, const std::string &fmt, Args&...);
|
void expect_gt (const T&, const U&, const std::string &fmt, Args&&...);
|
||||||
|
|
||||||
template <typename T, typename U, typename ...Args>
|
template <typename T, typename U, typename ...Args>
|
||||||
void expect_ge (const T&, const U&, const std::string &fmt, Args&...);
|
void expect_ge (const T&, const U&, const std::string &fmt, Args&&...);
|
||||||
|
|
||||||
template <typename T, typename U, typename ...Args>
|
template <typename T, typename U, typename ...Args>
|
||||||
void expect_lt (const T&, const U&, const std::string &fmt, Args&...);
|
void expect_lt (const T&, const U&, const std::string &fmt, Args&&...);
|
||||||
|
|
||||||
template <typename T, typename U, typename ...Args>
|
template <typename T, typename U, typename ...Args>
|
||||||
void expect_le (const T&, const U&, const std::string &fmt, Args&...);
|
void expect_le (const T&, const U&, const std::string &fmt, Args&&...);
|
||||||
|
|
||||||
//---------------------------------------------------------------------
|
//---------------------------------------------------------------------
|
||||||
template <typename T, typename ...Args>
|
template <typename T, typename ...Args>
|
||||||
void expect_nan (const T&, const std::string &fmt, Args&...);
|
void expect_nan (const T&, const std::string &fmt, Args&&...);
|
||||||
|
|
||||||
//---------------------------------------------------------------------
|
//---------------------------------------------------------------------
|
||||||
template <typename T, typename ...Args>
|
template <typename T, typename ...Args>
|
||||||
void expect_nothrow (T&&, const std::string &fmt, Args&...);
|
void expect_nothrow (T&&, const std::string &fmt, Args&&...);
|
||||||
|
|
||||||
template <typename E, typename T, typename ...Args>
|
template <typename E, typename T, typename ...Args>
|
||||||
void expect_throw (T&&, const std::string &fmt, Args&...);
|
void expect_throw (T&&, const std::string &fmt, Args&&...);
|
||||||
|
|
||||||
//---------------------------------------------------------------------
|
//---------------------------------------------------------------------
|
||||||
void skip (const std::string &msg);
|
void skip (const std::string &msg);
|
||||||
|
12
tap.ipp
12
tap.ipp
@ -54,7 +54,7 @@ util::TAP::logger::expect (std::function<bool(Args...)> test, Args&&... args, co
|
|||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
template <typename T, typename U, typename ...Args>
|
template <typename T, typename U, typename ...Args>
|
||||||
void
|
void
|
||||||
util::TAP::logger::expect_eq (const T&a, const U &b, const std::string &fmt, Args&... args)
|
util::TAP::logger::expect_eq (const T&a, const U &b, const std::string &fmt, Args&&... args)
|
||||||
{
|
{
|
||||||
static const std::function<bool(const T&,const U&)> TEST = [] (const T &t, const U &u) -> bool {
|
static const std::function<bool(const T&,const U&)> TEST = [] (const T &t, const U &u) -> bool {
|
||||||
return almost_equal (t, u);
|
return almost_equal (t, u);
|
||||||
@ -67,7 +67,7 @@ util::TAP::logger::expect_eq (const T&a, const U &b, const std::string &fmt, Arg
|
|||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
template <typename T, typename U, typename ...Args>
|
template <typename T, typename U, typename ...Args>
|
||||||
void
|
void
|
||||||
util::TAP::logger::expect_neq (const T&a, const U &b, const std::string &fmt, Args&... args)
|
util::TAP::logger::expect_neq (const T&a, const U &b, const std::string &fmt, Args&&... args)
|
||||||
{
|
{
|
||||||
static const std::function<bool(const T&,const U&)> TEST = [] (const T &t, const U &u) -> bool {
|
static const std::function<bool(const T&,const U&)> TEST = [] (const T &t, const U &u) -> bool {
|
||||||
return !almost_equal (t, u);
|
return !almost_equal (t, u);
|
||||||
@ -84,7 +84,7 @@ void \
|
|||||||
util::TAP::logger::expect_ ## SUFFIX (const T &a, \
|
util::TAP::logger::expect_ ## SUFFIX (const T &a, \
|
||||||
const U &b, \
|
const U &b, \
|
||||||
const std::string &fmt, \
|
const std::string &fmt, \
|
||||||
Args&... args) \
|
Args&&... args) \
|
||||||
{ \
|
{ \
|
||||||
static const std::function< \
|
static const std::function< \
|
||||||
bool(const T&,const U&) \
|
bool(const T&,const U&) \
|
||||||
@ -111,7 +111,7 @@ TAP_TEST(le, <=)
|
|||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
template <typename T, typename ...Args>
|
template <typename T, typename ...Args>
|
||||||
void
|
void
|
||||||
util::TAP::logger::expect_nan (const T &t, const std::string &fmt, Args&... args)
|
util::TAP::logger::expect_nan (const T &t, const std::string &fmt, Args&&... args)
|
||||||
{
|
{
|
||||||
bool(*func)(T) = std::isnan;
|
bool(*func)(T) = std::isnan;
|
||||||
expect<const T&> (
|
expect<const T&> (
|
||||||
@ -125,7 +125,7 @@ util::TAP::logger::expect_nan (const T &t, const std::string &fmt, Args&... args
|
|||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
template <typename T, typename ...Args>
|
template <typename T, typename ...Args>
|
||||||
void
|
void
|
||||||
util::TAP::logger::expect_nothrow (T &&t, const std::string &fmt, Args&... args)
|
util::TAP::logger::expect_nothrow (T &&t, const std::string &fmt, Args&&... args)
|
||||||
{
|
{
|
||||||
bool success = true;
|
bool success = true;
|
||||||
|
|
||||||
@ -142,7 +142,7 @@ util::TAP::logger::expect_nothrow (T &&t, const std::string &fmt, Args&... args)
|
|||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
template <typename E, typename T, typename ...Args>
|
template <typename E, typename T, typename ...Args>
|
||||||
void
|
void
|
||||||
util::TAP::logger::expect_throw (T &&t, const std::string &fmt, Args&... args)
|
util::TAP::logger::expect_throw (T &&t, const std::string &fmt, Args&&... args)
|
||||||
{
|
{
|
||||||
bool success = false;
|
bool success = false;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user