From 462dc853556480743dfdc96c405e643540478cd6 Mon Sep 17 00:00:00 2001 From: Bastian Dehn Date: Tue, 12 Mar 2024 21:21:02 +0100 Subject: [PATCH] rename tests for get options --- tests/kds_s2000w_net_tests.c | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/tests/kds_s2000w_net_tests.c b/tests/kds_s2000w_net_tests.c index 9e47086..715a85f 100644 --- a/tests/kds_s2000w_net_tests.c +++ b/tests/kds_s2000w_net_tests.c @@ -124,7 +124,7 @@ START_TEST(kds_s2000w_net_get_select_fd) } END_TEST -START_TEST(sane_kds_s2000w_net_control_option_zero) +START_TEST(sane_kds_s2000w_net_control_get_option_zero) { handler* h = init_handler(); int value = 0; @@ -137,7 +137,7 @@ START_TEST(sane_kds_s2000w_net_control_option_zero) } END_TEST -START_TEST(sane_kds_s2000w_net_control_option_two) +START_TEST(sane_kds_s2000w_net_control_get_option_two) { handler* h = init_handler(); int option_num = 0; @@ -153,7 +153,7 @@ START_TEST(sane_kds_s2000w_net_control_option_two) } END_TEST -START_TEST(sane_kds_s2000w_net_control_option_three) +START_TEST(sane_kds_s2000w_net_control_get_option_three) { handler* h = init_handler(); int option_num = 0; @@ -169,7 +169,7 @@ START_TEST(sane_kds_s2000w_net_control_option_three) } END_TEST -START_TEST(sane_kds_s2000w_net_control_option_four) +START_TEST(sane_kds_s2000w_net_control_get_option_four) { handler* h = init_handler(); int option_num = 0; @@ -185,7 +185,7 @@ START_TEST(sane_kds_s2000w_net_control_option_four) } END_TEST -START_TEST(sane_kds_s2000w_net_control_option_five) +START_TEST(sane_kds_s2000w_net_control_get_option_five) { handler* h = init_handler(); int option_num = 0; @@ -201,7 +201,7 @@ START_TEST(sane_kds_s2000w_net_control_option_five) } END_TEST -START_TEST(sane_kds_s2000w_net_control_option_six) +START_TEST(sane_kds_s2000w_net_control_get_option_six) { handler* h = init_handler(); int option_num = 0; @@ -227,12 +227,12 @@ Suite* net_tests() tcase_add_test(net_tests, kds_s2000w_net_get_parameters_with_image_data); tcase_add_test(net_tests, kds_s2000w_net_set_io_mode); tcase_add_test(net_tests, kds_s2000w_net_get_select_fd); - tcase_add_test(net_tests, sane_kds_s2000w_net_control_option_zero); - tcase_add_test(net_tests, sane_kds_s2000w_net_control_option_two); - tcase_add_test(net_tests, sane_kds_s2000w_net_control_option_three); - tcase_add_test(net_tests, sane_kds_s2000w_net_control_option_four); - tcase_add_test(net_tests, sane_kds_s2000w_net_control_option_five); - tcase_add_test(net_tests, sane_kds_s2000w_net_control_option_six); + tcase_add_test(net_tests, sane_kds_s2000w_net_control_get_option_zero); + tcase_add_test(net_tests, sane_kds_s2000w_net_control_get_option_two); + tcase_add_test(net_tests, sane_kds_s2000w_net_control_get_option_three); + tcase_add_test(net_tests, sane_kds_s2000w_net_control_get_option_four); + tcase_add_test(net_tests, sane_kds_s2000w_net_control_get_option_five); + tcase_add_test(net_tests, sane_kds_s2000w_net_control_get_option_six); suite_add_tcase(net_tests_suite, net_tests); return net_tests_suite; } \ No newline at end of file -- 2.39.5