Lines Matching refs:moving
102 bool moving = true; in ZTEST_F() local
108 (void)stepper_is_moving(fixture->dev, &moving); in ZTEST_F()
109 zassert_false(moving, "Driver should not be in state is_moving after being disabled"); in ZTEST_F()
133 bool moving = true; in ZTEST_F() local
142 (void)stepper_is_moving(fixture->dev, &moving); in ZTEST_F()
143 zassert_false(moving, "Driver should not be in state is_moving after being reenabled"); in ZTEST_F()
243 bool moving = false; in ZTEST_F() local
249 (void)stepper_is_moving(fixture->dev, &moving); in ZTEST_F()
250 zassert_true(moving, "Driver should be in state is_moving while moving"); in ZTEST_F()
256 bool moving = false; in ZTEST_F() local
270 (void)stepper_is_moving(fixture->dev, &moving); in ZTEST_F()
271 zassert_false(moving, "Driver should not be in state is_moving after finishing"); in ZTEST_F()
370 bool moving = false; in ZTEST_F() local
376 (void)stepper_is_moving(fixture->dev, &moving); in ZTEST_F()
377 zassert_true(moving, "Driver should be in state is_moving"); in ZTEST_F()
383 bool moving = true; in ZTEST_F() local
397 (void)stepper_is_moving(fixture->dev, &moving); in ZTEST_F()
398 zassert_false(moving, "Driver should not be in state is_moving after completion"); in ZTEST_F()
462 bool moving = false; in ZTEST_F() local
466 (void)stepper_is_moving(fixture->dev, &moving); in ZTEST_F()
467 zassert_true(moving, "Driver should be in state is_moving"); in ZTEST_F()
474 bool moving = true; in ZTEST_F() local
479 (void)stepper_is_moving(fixture->dev, &moving); in ZTEST_F()
480 zassert_false(moving, "Driver should not be in state is_moving when velocity is 0"); in ZTEST_F()