blob: 2c41fe03fe41dc66f3b583ac167fb531e07b051c [file] [log] [blame]
/*
* Copyright (c) 2017 Nordic Semiconductor ASA
* Copyright (c) 2015 Runtime Inc
*
* SPDX-License-Identifier: Apache-2.0
*/
#include "fcb_test.h"
void fcb_test_empty_walk(void)
{
int rc;
struct fcb *fcb;
fcb = &test_fcb;
rc = fcb_walk(fcb, 0, fcb_test_empty_walk_cb, NULL);
zassert_true(rc == 0, "fcb_walk call failure");
}