Source
1
1
/*
2
-
** Zabbix
3
2
** Copyright (C) 2001-2024 Zabbix SIA
4
3
**
5
-
** This program is free software; you can redistribute it and/or modify
6
-
** it under the terms of the GNU Ge_neral Public License as published by
7
-
** the Free Software Foundation; either version 2 of the License, or
8
-
** (at your option) any later version.
4
+
** This program is free software: you can redistribute it and/or modify it under the terms of
5
+
** the GNU Affero General Public License as published by the Free Software Foundation, version 3.
9
6
**
10
-
** This program is distributed in the hope that it will be useful,
11
-
** but WITHOUT ANY WARRANTY; without even the implied warranty of
12
-
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
-
** GNU Ge_neral Public License for more details.
7
+
** This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
8
+
** without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
9
+
** See the GNU Affero General Public License for more details.
14
10
**
15
-
** You should have received a copy of the GNU Ge_neral Public License
16
-
** along with this program; if not, write to the Free Software
17
-
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
11
+
** You should have received a copy of the GNU Affero General Public License along with this program.
12
+
** If not, see <https://www.gnu.org/licenses/>.
18
13
**/
19
14
20
15
#ifndef ZABBIX_MOCK_ASSERT_H
21
16
#define ZABBIX_MOCK_ASSERT_H
22
17
23
18
#include "zbxtime.h"
24
19
#include "zbxalgo.h"
25
20
26
21
void __zbx_mock_assert_str_eq(const char *file, int line, const char *prefix_msg, const char *expected_value,
27
22
const char *returned_value);