1 /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
5 * Copyright (C) 2011 Data Differential, http://datadifferential.com/
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 3 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
26 #if defined(HAVE_LIBMEMCACHED) && HAVE_LIBMEMCACHED
27 #include <libmemcached-1.0/memcached.h>
28 #include <libmemcachedutil-1.0/ostream.hpp>
31 #if defined(HAVE_LIBGEARMAN) && HAVE_LIBGEARMAN
32 #include <libgearman/gearman.h>
37 template <class T_comparable, class T_hint>
38 bool _compare_truth_hint(const char *file, int line, const char *func, T_comparable __expected, const char *assertation_label, T_hint __hint)
40 if (__expected == false)
42 libtest::stream::make_cerr(file, line, func) << "Assertation \"" << assertation_label << "\" failed, hint: " << __hint;
49 template <class T1_comparable, class T2_comparable>
50 bool _compare(const char *file, int line, const char *func, const T1_comparable& __expected, const T2_comparable& __actual)
52 if (__expected != __actual)
54 libtest::stream::make_cerr(file, line, func) << "Expected \"" << __expected << "\" got \"" << __actual << "\"";
61 template <class T_comparable>
62 bool _compare_zero(const char *file, int line, const char *func, T_comparable __actual)
64 if (T_comparable(0) != __actual)
66 libtest::stream::make_cerr(file, line, func) << "Expected 0 got \"" << __actual << "\"";
73 template <class T_comparable>
74 bool _truth(const char *file, int line, const char *func, T_comparable __truth)
78 libtest::stream::make_cerr(file, line, func) << "Assertion failed for " << func << "() with \"" << __truth << "\"";
85 template <class T1_comparable, class T2_comparable, class T_hint>
86 bool _compare_hint(const char *file, int line, const char *func, T1_comparable __expected, T2_comparable __actual, T_hint __hint)
88 if (__expected != __actual)
90 libtest::stream::make_cerr(file, line, func) << "Expected \"" << __expected << "\" got \"" << __actual << "\"" << " Additionally: \"" << __hint << "\"";
98 } // namespace libtest