Lines Matching full:moving
93 bool moving = true; in ZTEST_F() local
99 (void)stepper_is_moving(fixture->dev, &moving); in ZTEST_F()
100 zassert_false(moving, "Driver should not be in state is_moving after being disabled"); in ZTEST_F()
124 bool moving = true; in ZTEST_F() local
133 (void)stepper_is_moving(fixture->dev, &moving); in ZTEST_F()
134 zassert_false(moving, "Driver should not be in state is_moving after being reenabled"); in ZTEST_F()
219 bool moving = false; in ZTEST_F() local
225 (void)stepper_is_moving(fixture->dev, &moving); in ZTEST_F()
226 zassert_true(moving, "Driver should be in state is_moving while moving"); in ZTEST_F()
232 bool moving = false; in ZTEST_F() local
246 (void)stepper_is_moving(fixture->dev, &moving); in ZTEST_F()
247 zassert_false(moving, "Driver should not be in state is_moving after finishing"); in ZTEST_F()
346 bool moving = false; in ZTEST_F() local
352 (void)stepper_is_moving(fixture->dev, &moving); in ZTEST_F()
353 zassert_true(moving, "Driver should be in state is_moving"); in ZTEST_F()
359 bool moving = true; in ZTEST_F() local
373 (void)stepper_is_moving(fixture->dev, &moving); in ZTEST_F()
374 zassert_false(moving, "Driver should not be in state is_moving after completion"); in ZTEST_F()
441 bool moving = false; in ZTEST_F() local
446 (void)stepper_is_moving(fixture->dev, &moving); in ZTEST_F()
447 zassert_true(moving, "Driver should be in state is_moving"); in ZTEST_F()