Source
15
15
** You should have received a copy of the GNU Ge_neral Public License
16
16
** along with this program; if not, write to the Free Software
17
17
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18
18
**/
19
19
20
20
#ifndef ZABBIX_MOCK_ASSERT_H
21
21
#define ZABBIX_MOCK_ASSERT_H
22
22
23
23
#include "common.h"
24
24
25
-
extern double ZBX_DOUBLE_EPSILON;
26
-
27
25
void __zbx_mock_assert_str_eq(const char *file, int line, const char *prefix_msg, const char *expected_value,
28
26
const char *returned_value);
29
27
30
28
void __zbx_mock_assert_str_ne(const char *file, int line, const char *prefix_msg, const char *expected_value,
31
29
const char *returned_value);
32
30
33
31
void __zbx_mock_assert_uint64_eq(const char *file, int line, const char *prefix_msg, zbx_uint64_t expected_value,
34
32
zbx_uint64_t returned_value);
35
33
36
34
void __zbx_mock_assert_uint64_ne(const char *file, int line, const char *prefix_msg, zbx_uint64_t expected_value,