pacemaker 2.1.5-a3f44794f94
Scalable High-Availability cluster resource manager
pcmk__btoa_test.c
Go to the documentation of this file.
1/*
2 * Copyright 2020-2021 the Pacemaker project contributors
3 *
4 * The version control history for this file may have further details.
5 *
6 * This source code is licensed under the GNU Lesser General Public License
7 * version 2.1 or later (LGPLv2.1+) WITHOUT ANY WARRANTY.
8 */
9
10#include <crm_internal.h>
11
13
14static void
15btoa(void **state) {
16 assert_string_equal(pcmk__btoa(false), "false");
17 assert_string_equal(pcmk__btoa(true), "true");
18 assert_string_equal(pcmk__btoa(1 == 0), "false");
19}
20
21PCMK__UNIT_TEST(NULL, NULL,
22 cmocka_unit_test(btoa))
#define PCMK__UNIT_TEST(group_setup, group_teardown,...)