2 * Copyright (C) 1995-2006, Index Data ApS
3 * See the file LICENSE for details.
5 * $Id: test.h,v 1.9 2006-07-07 13:39:02 heikki Exp $
9 \brief Unit Test for YAZ
15 #include <yaz/yconfig.h>
18 /** \brief Get the verbosity level */
19 int yaz_test_get_verbosity();
22 #define YAZ_TEST_TYPE_OK 1
23 /** \brief Test failed */
24 #define YAZ_TEST_TYPE_FAIL 2
26 /** \brief boolean test. as only evaluated once */
27 #define YAZ_CHECK(as) { \
29 yaz_check_print1(YAZ_TEST_TYPE_OK, __FILE__, __LINE__, #as); \
31 yaz_check_print1(YAZ_TEST_TYPE_FAIL, __FILE__, __LINE__, #as); \
35 /** \brief a test we know will fail at this time.
37 * Later, when the bug is fixed, this test will suddenly pass,
38 * which will be reported as an error, to remind you to go and fix
42 #define YAZ_CHECK_TODO(as) { \
43 yaz_check_inc_todo(); \
45 yaz_check_print1(YAZ_TEST_TYPE_OK, __FILE__, __LINE__, "TODO: " #as); \
47 yaz_check_print1(YAZ_TEST_TYPE_FAIL, __FILE__, __LINE__, "TODO: "#as); \
51 /** \brief equality test. left, right only evaluated once */
52 #define YAZ_CHECK_EQ(left, right) { \
56 yaz_check_eq1(YAZ_TEST_TYPE_OK, __FILE__, __LINE__, \
57 #left, #right, lval, rval); \
59 yaz_check_eq1(YAZ_TEST_TYPE_FAIL, __FILE__, __LINE__, \
60 #left, #right, lval, rval); \
64 /** \brief Macro to initialize the system (in start of main typically) */
65 #define YAZ_CHECK_INIT(argc, argv) yaz_check_init1(&argc, &argv)
66 /** \brief Macro to terminate the system (end of main, normally) */
67 #define YAZ_CHECK_TERM yaz_check_term1(); return 0
69 /** \brief Macro to enable and initialize the yaz_log(start of main) */
70 #define YAZ_CHECK_LOG() yaz_check_init_log(argv[0])
74 /** \brief used by macro. Should not be called directly */
75 YAZ_EXPORT void yaz_check_init1(int *argc, char ***argv);
77 /** \brief used by macro. Should not be called directly */
78 YAZ_EXPORT void yaz_check_term1(void);
80 /** \brief used by macro. Should not be called directly */
81 YAZ_EXPORT void yaz_check_init_log(const char *argv0);
83 /** \brief used by macro. Should not be called directly */
84 YAZ_EXPORT void yaz_check_print1(int type, const char *file, int line,
86 /** \brief used by macro. Should not be called directly */
87 YAZ_EXPORT void yaz_check_eq1(int type, const char *file, int line,
88 const char *left, const char *right,
90 /** \brief used by macro. Should not be called directly */
91 YAZ_EXPORT void yaz_check_inc_todo(void);
98 * indent-tabs-mode: nil
100 * vim: shiftwidth=4 tabstop=8 expandtab