Lines Matching refs:TEST_ASSERT_EQUAL
38 TEST_ASSERT_EQUAL(10, lv_subject_get_int(&subject)); in test_observer_add_remove()
39 TEST_ASSERT_EQUAL(10, current_v); in test_observer_add_remove()
43 TEST_ASSERT_EQUAL(15, lv_subject_get_int(&subject)); in test_observer_add_remove()
44 TEST_ASSERT_EQUAL(10, current_v); /*The observer cb is not called*/ in test_observer_add_remove()
55 TEST_ASSERT_EQUAL(5, lv_subject_get_int(&subject)); in test_observer_int()
56 TEST_ASSERT_EQUAL(5, lv_subject_get_previous_int(&subject)); in test_observer_int()
59 TEST_ASSERT_EQUAL(10, lv_subject_get_int(&subject)); in test_observer_int()
60 TEST_ASSERT_EQUAL(5, lv_subject_get_previous_int(&subject)); in test_observer_int()
63 TEST_ASSERT_EQUAL(15, lv_subject_get_int(&subject)); in test_observer_int()
64 TEST_ASSERT_EQUAL(10, lv_subject_get_previous_int(&subject)); in test_observer_int()
68 TEST_ASSERT_EQUAL(15, lv_subject_get_int(&subject)); in test_observer_int()
69 TEST_ASSERT_EQUAL(10, lv_subject_get_previous_int(&subject)); in test_observer_int()
72 TEST_ASSERT_EQUAL(15, lv_subject_get_int(&subject)); in test_observer_int()
73 TEST_ASSERT_EQUAL(10, lv_subject_get_previous_int(&subject)); in test_observer_int()
76 TEST_ASSERT_EQUAL(15, lv_subject_get_int(&subject)); in test_observer_int()
77 TEST_ASSERT_EQUAL(10, lv_subject_get_previous_int(&subject)); in test_observer_int()
219 TEST_ASSERT_EQUAL(1, group_observer_called); in test_observer_group()
222 TEST_ASSERT_EQUAL(2, group_observer_called); in test_observer_group()
225 TEST_ASSERT_EQUAL(3, group_observer_called); in test_observer_group()
243 TEST_ASSERT_EQUAL(false, lv_obj_has_flag(obj, LV_OBJ_FLAG_HIDDEN)); in test_observer_obj_flag()
247 TEST_ASSERT_EQUAL(false, lv_obj_has_flag(obj, LV_OBJ_FLAG_HIDDEN)); in test_observer_obj_flag()
248 TEST_ASSERT_EQUAL(true, lv_obj_has_flag(obj, LV_OBJ_FLAG_CHECKABLE)); in test_observer_obj_flag()
251 TEST_ASSERT_EQUAL(true, lv_obj_has_flag(obj, LV_OBJ_FLAG_HIDDEN)); in test_observer_obj_flag()
252 TEST_ASSERT_EQUAL(true, lv_obj_has_flag(obj, LV_OBJ_FLAG_CHECKABLE)); in test_observer_obj_flag()
255 TEST_ASSERT_EQUAL(false, lv_obj_has_flag(obj, LV_OBJ_FLAG_HIDDEN)); in test_observer_obj_flag()
256 TEST_ASSERT_EQUAL(false, lv_obj_has_flag(obj, LV_OBJ_FLAG_CHECKABLE)); in test_observer_obj_flag()
274 TEST_ASSERT_EQUAL(false, lv_obj_has_state(obj, LV_STATE_CHECKED)); in test_observer_obj_state()
278 TEST_ASSERT_EQUAL(false, lv_obj_has_state(obj, LV_STATE_CHECKED)); in test_observer_obj_state()
279 TEST_ASSERT_EQUAL(true, lv_obj_has_state(obj, LV_STATE_DISABLED)); in test_observer_obj_state()
282 TEST_ASSERT_EQUAL(true, lv_obj_has_state(obj, LV_STATE_CHECKED)); in test_observer_obj_state()
283 TEST_ASSERT_EQUAL(true, lv_obj_has_state(obj, LV_STATE_DISABLED)); in test_observer_obj_state()
286 TEST_ASSERT_EQUAL(false, lv_obj_has_state(obj, LV_STATE_CHECKED)); in test_observer_obj_state()
287 TEST_ASSERT_EQUAL(false, lv_obj_has_state(obj, LV_STATE_DISABLED)); in test_observer_obj_state()
307 TEST_ASSERT_EQUAL(true, lv_obj_has_state(obj, LV_STATE_CHECKED)); in test_observer_button_checked()
310 TEST_ASSERT_EQUAL(false, lv_obj_has_state(obj, LV_STATE_CHECKED)); in test_observer_button_checked()
313 TEST_ASSERT_EQUAL(true, lv_obj_has_state(obj, LV_STATE_CHECKED)); in test_observer_button_checked()
314 TEST_ASSERT_EQUAL(1, lv_subject_get_int(&subject)); in test_observer_button_checked()
429 TEST_ASSERT_EQUAL(30, lv_arc_get_value(obj)); in test_observer_arc_value()
432 TEST_ASSERT_EQUAL(40, lv_arc_get_value(obj)); in test_observer_arc_value()
443 TEST_ASSERT_EQUAL(50, lv_arc_get_value(obj)); in test_observer_arc_value()
444 TEST_ASSERT_EQUAL(50, lv_subject_get_int(&subject)); in test_observer_arc_value()
455 TEST_ASSERT_EQUAL(30, lv_slider_get_value(obj)); in test_observer_slider_value()
458 TEST_ASSERT_EQUAL(40, lv_slider_get_value(obj)); in test_observer_slider_value()
473 TEST_ASSERT_EQUAL(29, lv_slider_get_value(obj)); in test_observer_slider_value()
474 TEST_ASSERT_EQUAL(29, lv_subject_get_int(&subject)); in test_observer_slider_value()
485 TEST_ASSERT_EQUAL(1, lv_roller_get_selected(obj)); in test_observer_roller_value()
488 TEST_ASSERT_EQUAL(2, lv_roller_get_selected(obj)); in test_observer_roller_value()
493 TEST_ASSERT_EQUAL(1, lv_roller_get_selected(obj)); in test_observer_roller_value()
494 TEST_ASSERT_EQUAL(1, lv_subject_get_int(&subject)); in test_observer_roller_value()
505 TEST_ASSERT_EQUAL(1, lv_dropdown_get_selected(obj)); in test_observer_dropdown_value()
508 TEST_ASSERT_EQUAL(2, lv_dropdown_get_selected(obj)); in test_observer_dropdown_value()
514 TEST_ASSERT_EQUAL(0, lv_dropdown_get_selected(obj)); in test_observer_dropdown_value()
515 TEST_ASSERT_EQUAL(0, lv_subject_get_int(&subject)); in test_observer_dropdown_value()