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 General Public License version 2
7 * or later (GPLv2+) WITHOUT ANY WARRANTY.
8 */
9
10 #include <crm_internal.h>
11
12 #include <crm/common/unittest_internal.h>
13
14 static void
15 btoa(void **state) {
/* ![[previous]](../icons/n_left.png)
![[next]](../icons/n_right.png)
![[first]](../icons/n_first.png)
![[last]](../icons/n_last.png)
![[top]](../icons/top.png)
![[bottom]](../icons/bottom.png)
![[index]](../icons/index.png)
*/
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
21 PCMK__UNIT_TEST(NULL, NULL,
22 cmocka_unit_test(btoa))