blob: da3b6df933ab8fd96b3e53ba10db966c7d9b579b [file] [log] [blame]
/*
* Copyright 2021 Google LLC
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/ztest.h>
#include "common.h"
static void test(void)
{
}
static bool predicate(const void *state)
{
const struct global_test_state *s = state;
return s->phase == PHASE_STEPS_0 || s->phase == PHASE_STEPS_1;
}
ztest_register_test_suite(test_step_all, predicate, ztest_unit_test(test));