extern "C" {
#endif
+void test__f_account_by_id__fails(void **state) {
+
+ const long size = 20;
+ uid_t uid = 0;
+ f_account_t account = f_account_t_initialize;
+
+ int errnos[] = {
+ EINTR,
+ EIO,
+ EMFILE,
+ ENFILE,
+ ENOMEM,
+ ERANGE,
+ mock_errno_generic,
+ };
+
+ f_status_t statuss[] = {
+ F_interrupt,
+ F_input_output,
+ F_file_descriptor_max,
+ F_file_open_max,
+ F_memory_not,
+ F_buffer_too_small,
+ F_failure,
+ };
+
+ for (int i = 0; i < 7; ++i) {
+
+ will_return(__wrap_sysconf, size);
+ will_return(__wrap_getpwuid_r, true);
+ will_return(__wrap_getpwuid_r, errnos[i]);
+
+ const f_status_t status = f_account_by_id(uid, &account);
+
+ assert_int_equal(F_status_set_fine(status), statuss[i]);
+ } // for
+
+ macro_f_account_t_delete_simple(account);
+}
+
void test__f_account_by_id__not_found(void **state) {
const long size = 20;
macro_f_account_t_delete_simple(account);
}
+#ifndef _di_level_0_parameter_checking_
+ void test__f_account_by_id__parameter_checking(void **state) {
+
+ {
+ const f_status_t status = f_account_by_id(0, 0);
+
+ assert_int_equal(F_status_set_fine(status), F_parameter);
+ }
+ }
+#endif // _di_level_0_parameter_checking_
+
void test__f_account_by_id__works(void **state) {
const long size = 20;
macro_f_account_t_delete_simple(account);
}
-void test__f_account_by_id__fails(void **state) {
-
- const long size = 20;
- uid_t uid = 0;
- f_account_t account = f_account_t_initialize;
-
- int errnos[] = {
- EINTR,
- EIO,
- EMFILE,
- ENFILE,
- ENOMEM,
- ERANGE,
- mock_errno_generic,
- };
-
- f_status_t statuss[] = {
- F_interrupt,
- F_input_output,
- F_file_descriptor_max,
- F_file_open_max,
- F_memory_not,
- F_buffer_too_small,
- F_failure,
- };
-
- for (int i = 0; i < 7; ++i) {
-
- will_return(__wrap_sysconf, size);
- will_return(__wrap_getpwuid_r, true);
- will_return(__wrap_getpwuid_r, errnos[i]);
-
- const f_status_t status = f_account_by_id(uid, &account);
-
- assert_int_equal(F_status_set_fine(status), statuss[i]);
- } // for
-
- macro_f_account_t_delete_simple(account);
-}
-
#ifdef __cplusplus
} // extern "C"
#endif
#define _TEST__F_account_by_id_
/**
+ * Test that function fails.
+ *
+ * @see f_account_by_id()
+ */
+extern void test__f_account_by_id__fails(void **state);
+
+/**
* Test that function works but the account does not exist.
*
* @see f_account_by_id()
extern void test__f_account_by_id__not_found(void **state);
/**
- * Test that function works.
+ * Test that parameter checking works as expected.
*
* @see f_account_by_id()
*/
-extern void test__f_account_by_id__works(void **state);
+#ifndef _di_level_0_parameter_checking_
+ extern void test__f_account_by_id__parameter_checking(void **state);
+#endif // _di_level_0_parameter_checking_
/**
- * Test that function fails.
+ * Test that function works.
*
* @see f_account_by_id()
*/
-extern void test__f_account_by_id__fails(void **state);
+extern void test__f_account_by_id__works(void **state);
#endif // _TEST__F_account_by_id_
extern "C" {
#endif
+void test__f_account_by_name__fails(void **state) {
+
+ const long size = 20;
+ char *name = "name";
+ f_account_t account = f_account_t_initialize;
+
+ int errnos[] = {
+ EINTR,
+ EIO,
+ EMFILE,
+ ENFILE,
+ ENOMEM,
+ ERANGE,
+ mock_errno_generic,
+ };
+
+ f_status_t statuss[] = {
+ F_interrupt,
+ F_input_output,
+ F_file_descriptor_max,
+ F_file_open_max,
+ F_memory_not,
+ F_buffer_too_small,
+ F_failure,
+ };
+
+ for (int i = 0; i < 7; ++i) {
+
+ will_return(__wrap_sysconf, size);
+ will_return(__wrap_getpwnam_r, true);
+ will_return(__wrap_getpwnam_r, errnos[i]);
+
+ const f_status_t status = f_account_by_name(name, &account);
+
+ assert_int_equal(F_status_set_fine(status), statuss[i]);
+ } // for
+
+ macro_f_account_t_delete_simple(account);
+}
+
void test__f_account_by_name__not_found(void **state) {
const long size = 20;
struct passwd password;
- char *name = "the_name";
+ char *name = "name";
f_account_t account = f_account_t_initialize;
{
macro_f_account_t_delete_simple(account);
}
+#ifndef _di_level_0_parameter_checking_
+ void test__f_account_by_name__parameter_checking(void **state) {
+
+ const f_string_t name = f_string_t_initialize;
+
+ {
+ const f_status_t status = f_account_by_name(name, 0);
+
+ assert_int_equal(F_status_set_fine(status), F_parameter);
+ }
+ }
+#endif // _di_level_0_parameter_checking_
+
void test__f_account_by_name__works(void **state) {
const long size = 20;
struct passwd password;
struct passwd pointer;
- char *name = "the_name";
+ char *name = "name";
f_account_t account = f_account_t_initialize;
password.pw_uid = 1;
macro_f_account_t_delete_simple(account);
}
-void test__f_account_by_name__fails(void **state) {
-
- const long size = 20;
- char *name = "the_name";
- f_account_t account = f_account_t_initialize;
-
- int errnos[] = {
- EINTR,
- EIO,
- EMFILE,
- ENFILE,
- ENOMEM,
- ERANGE,
- mock_errno_generic,
- };
-
- f_status_t statuss[] = {
- F_interrupt,
- F_input_output,
- F_file_descriptor_max,
- F_file_open_max,
- F_memory_not,
- F_buffer_too_small,
- F_failure,
- };
-
- for (int i = 0; i < 7; ++i) {
-
- will_return(__wrap_sysconf, size);
- will_return(__wrap_getpwnam_r, true);
- will_return(__wrap_getpwnam_r, errnos[i]);
-
- const f_status_t status = f_account_by_name(name, &account);
-
- assert_int_equal(F_status_set_fine(status), statuss[i]);
- } // for
-
- macro_f_account_t_delete_simple(account);
-}
-
#ifdef __cplusplus
} // extern "C"
#endif
#define _TEST__F_account_by_name_
/**
+ * Test that function fails.
+ *
+ * @see f_account_by_name()
+ */
+extern void test__f_account_by_name__fails(void **state);
+
+/**
* Test that function works but the account does not exist.
*
* @see f_account_by_name()
extern void test__f_account_by_name__not_found(void **state);
/**
- * Test that function works.
+ * Test that parameter checking works as expected.
*
* @see f_account_by_name()
*/
-extern void test__f_account_by_name__works(void **state);
+#ifndef _di_level_0_parameter_checking_
+ extern void test__f_account_by_name__parameter_checking(void **state);
+#endif // _di_level_0_parameter_checking_
/**
- * Test that function fails.
+ * Test that function works.
*
* @see f_account_by_name()
*/
-extern void test__f_account_by_name__fails(void **state);
+extern void test__f_account_by_name__works(void **state);
#endif // _TEST__F_account_by_name_
extern "C" {
#endif
+void test__f_account_id_group_by_name__fails(void **state) {
+
+ const long size = 20;
+ char *name = "name";
+ gid_t gid = 0;
+
+ int errnos[] = {
+ EINTR,
+ EIO,
+ EMFILE,
+ ENFILE,
+ ENOMEM,
+ ERANGE,
+ mock_errno_generic,
+ };
+
+ f_status_t statuss[] = {
+ F_interrupt,
+ F_input_output,
+ F_file_descriptor_max,
+ F_file_open_max,
+ F_memory_not,
+ F_buffer_too_small,
+ F_failure,
+ };
+
+ for (int i = 0; i < 7; ++i) {
+
+ will_return(__wrap_sysconf, size);
+ will_return(__wrap_getgrnam_r, true);
+ will_return(__wrap_getgrnam_r, errnos[i]);
+
+ const f_status_t status = f_account_id_group_by_name(name, &gid);
+
+ assert_int_equal(F_status_set_fine(status), statuss[i]);
+ } // for
+}
+
void test__f_account_id_group_by_name__not_found(void **state) {
const long size = 20;
struct group group_data;
- char *name = "the_name";
+ char *name = "name";
gid_t gid = 0;
{
}
}
+#ifndef _di_level_0_parameter_checking_
+ void test__f_account_id_group_by_name__parameter_checking(void **state) {
+
+ const f_string_t name = f_string_t_initialize;
+
+ {
+ const f_status_t status = f_account_id_group_by_name(name, 0);
+
+ assert_int_equal(F_status_set_fine(status), F_parameter);
+ }
+ }
+#endif // _di_level_0_parameter_checking_
+
void test__f_account_id_group_by_name__works(void **state) {
const long size = 20;
gid_t gid = 0;
group_data.gr_gid = 1;
- group_data.gr_name = "the_name";
+ group_data.gr_name = "gr_name";
group_data.gr_passwd = "gr_passwd";
group_data.gr_mem = pointers;
}
}
-void test__f_account_id_group_by_name__fails(void **state) {
-
- const long size = 20;
- char *name = "the_name";
- gid_t gid = 0;
-
- int errnos[] = {
- EINTR,
- EIO,
- EMFILE,
- ENFILE,
- ENOMEM,
- ERANGE,
- mock_errno_generic,
- };
-
- f_status_t statuss[] = {
- F_interrupt,
- F_input_output,
- F_file_descriptor_max,
- F_file_open_max,
- F_memory_not,
- F_buffer_too_small,
- F_failure,
- };
-
- for (int i = 0; i < 7; ++i) {
-
- will_return(__wrap_sysconf, size);
- will_return(__wrap_getgrnam_r, true);
- will_return(__wrap_getgrnam_r, errnos[i]);
-
- const f_status_t status = f_account_id_group_by_name(name, &gid);
-
- assert_int_equal(F_status_set_fine(status), statuss[i]);
- } // for
-}
-
#ifdef __cplusplus
} // extern "C"
#endif
#define _TEST__F_account_id_group_by_name_
/**
+ * Test that function fails.
+ *
+ * @see f_account_id_group_by_name()
+ */
+extern void test__f_account_id_group_by_name__fails(void **state);
+
+/**
* Test that function works but the group does not exist.
*
* @see f_account_id_group_by_name()
extern void test__f_account_id_group_by_name__not_found(void **state);
/**
- * Test that function works.
+ * Test that parameter checking works as expected.
*
* @see f_account_id_group_by_name()
*/
-extern void test__f_account_id_group_by_name__works(void **state);
+#ifndef _di_level_0_parameter_checking_
+ extern void test__f_account_id_group_by_name__parameter_checking(void **state);
+#endif // _di_level_0_parameter_checking_
/**
- * Test that function fails.
+ * Test that function works.
*
* @see f_account_id_group_by_name()
*/
-extern void test__f_account_id_group_by_name__fails(void **state);
+extern void test__f_account_id_group_by_name__works(void **state);
#endif // _TEST__F_account_id_group_by_name_
extern "C" {
#endif
+void test__f_account_id_user_by_name__fails(void **state) {
+
+ const long size = 20;
+ char *name = "name";
+ uid_t uid = 0;
+
+ int errnos[] = {
+ EINTR,
+ EIO,
+ EMFILE,
+ ENFILE,
+ ENOMEM,
+ ERANGE,
+ mock_errno_generic,
+ };
+
+ f_status_t statuss[] = {
+ F_interrupt,
+ F_input_output,
+ F_file_descriptor_max,
+ F_file_open_max,
+ F_memory_not,
+ F_buffer_too_small,
+ F_failure,
+ };
+
+ for (int i = 0; i < 7; ++i) {
+
+ will_return(__wrap_sysconf, size);
+ will_return(__wrap_getpwnam_r, true);
+ will_return(__wrap_getpwnam_r, errnos[i]);
+
+ const f_status_t status = f_account_id_user_by_name(name, &uid);
+
+ assert_int_equal(F_status_set_fine(status), statuss[i]);
+ } // for
+}
+
void test__f_account_id_user_by_name__not_found(void **state) {
const long size = 20;
struct passwd password;
- char *name = "the_name";
+ char *name = "name";
uid_t uid = 0;
{
}
}
+#ifndef _di_level_0_parameter_checking_
+ void test__f_account_id_user_by_name__parameter_checking(void **state) {
+
+ const f_string_t name = f_string_t_initialize;
+
+ {
+ const f_status_t status = f_account_id_user_by_name(name, 0);
+
+ assert_int_equal(F_status_set_fine(status), F_parameter);
+ }
+ }
+#endif // _di_level_0_parameter_checking_
+
void test__f_account_id_user_by_name__works(void **state) {
const long size = 20;
}
}
-void test__f_account_id_user_by_name__fails(void **state) {
-
- const long size = 20;
- char *name = "the_name";
- uid_t uid = 0;
-
- int errnos[] = {
- EINTR,
- EIO,
- EMFILE,
- ENFILE,
- ENOMEM,
- ERANGE,
- mock_errno_generic,
- };
-
- f_status_t statuss[] = {
- F_interrupt,
- F_input_output,
- F_file_descriptor_max,
- F_file_open_max,
- F_memory_not,
- F_buffer_too_small,
- F_failure,
- };
-
- for (int i = 0; i < 7; ++i) {
-
- will_return(__wrap_sysconf, size);
- will_return(__wrap_getpwnam_r, true);
- will_return(__wrap_getpwnam_r, errnos[i]);
-
- const f_status_t status = f_account_id_user_by_name(name, &uid);
-
- assert_int_equal(F_status_set_fine(status), statuss[i]);
- } // for
-}
-
#ifdef __cplusplus
} // extern "C"
#endif
#define _TEST__F_account_id_user_by_name_
/**
+ * Test that function fails.
+ *
+ * @see f_account_id_user_by_name()
+ */
+extern void test__f_account_id_user_by_name__fails(void **state);
+
+/**
* Test that function works but the group does not exist.
*
* @see f_account_id_user_by_name()
extern void test__f_account_id_user_by_name__not_found(void **state);
/**
- * Test that function works.
+ * Test that parameter checking works as expected.
*
* @see f_account_id_user_by_name()
*/
-extern void test__f_account_id_user_by_name__works(void **state);
+#ifndef _di_level_0_parameter_checking_
+ extern void test__f_account_id_user_by_name__parameter_checking(void **state);
+#endif // _di_level_0_parameter_checking_
/**
- * Test that function fails.
+ * Test that function works.
*
* @see f_account_id_user_by_name()
*/
-extern void test__f_account_id_user_by_name__fails(void **state);
+extern void test__f_account_id_user_by_name__works(void **state);
#endif // _TEST__F_account_id_user_by_name_
extern "C" {
#endif
+void test__f_account_name_group_by_id__fails(void **state) {
+
+ const long size = 20;
+ gid_t gid = 0;
+ f_string_dynamic_t name = f_string_dynamic_t_initialize;
+
+ int errnos[] = {
+ EINTR,
+ EIO,
+ EMFILE,
+ ENFILE,
+ ENOMEM,
+ ERANGE,
+ mock_errno_generic,
+ };
+
+ f_status_t statuss[] = {
+ F_interrupt,
+ F_input_output,
+ F_file_descriptor_max,
+ F_file_open_max,
+ F_memory_not,
+ F_buffer_too_small,
+ F_failure,
+ };
+
+ for (int i = 0; i < 7; ++i) {
+
+ will_return(__wrap_sysconf, size);
+ will_return(__wrap_getgrgid_r, true);
+ will_return(__wrap_getgrgid_r, errnos[i]);
+
+ const f_status_t status = f_account_name_group_by_id(gid, &name);
+
+ assert_int_equal(F_status_set_fine(status), statuss[i]);
+ } // for
+
+ f_string_dynamic_resize(0, &name);
+}
+
void test__f_account_name_group_by_id__not_found(void **state) {
const long size = 20;
f_string_dynamic_resize(0, &name);
}
+#ifndef _di_level_0_parameter_checking_
+ void test__f_account_name_group_by_id__parameter_checking(void **state) {
+
+ {
+ const f_status_t status = f_account_name_group_by_id(0, 0);
+
+ assert_int_equal(F_status_set_fine(status), F_parameter);
+ }
+ }
+#endif // _di_level_0_parameter_checking_
+
void test__f_account_name_group_by_id__works(void **state) {
const long size = 20;
f_string_dynamic_resize(0, &name);
}
-void test__f_account_name_group_by_id__fails(void **state) {
-
- const long size = 20;
- gid_t gid = 0;
- f_string_dynamic_t name = f_string_dynamic_t_initialize;
-
- int errnos[] = {
- EINTR,
- EIO,
- EMFILE,
- ENFILE,
- ENOMEM,
- ERANGE,
- mock_errno_generic,
- };
-
- f_status_t statuss[] = {
- F_interrupt,
- F_input_output,
- F_file_descriptor_max,
- F_file_open_max,
- F_memory_not,
- F_buffer_too_small,
- F_failure,
- };
-
- for (int i = 0; i < 7; ++i) {
-
- will_return(__wrap_sysconf, size);
- will_return(__wrap_getgrgid_r, true);
- will_return(__wrap_getgrgid_r, errnos[i]);
-
- const f_status_t status = f_account_name_group_by_id(gid, &name);
-
- assert_int_equal(F_status_set_fine(status), statuss[i]);
- } // for
-
- f_string_dynamic_resize(0, &name);
-}
-
#ifdef __cplusplus
} // extern "C"
#endif
#define _TEST__F_account_name_group_by_id_
/**
+ * Test that function fails.
+ *
+ * @see f_account_name_group_by_id()
+ */
+extern void test__f_account_name_group_by_id__fails(void **state);
+
+/**
* Test that function works but the group does not exist.
*
* @see f_account_name_group_by_id()
extern void test__f_account_name_group_by_id__not_found(void **state);
/**
- * Test that function works.
+ * Test that parameter checking works as expected.
*
* @see f_account_name_group_by_id()
*/
-extern void test__f_account_name_group_by_id__works(void **state);
+#ifndef _di_level_0_parameter_checking_
+ extern void test__f_account_name_group_by_id__parameter_checking(void **state);
+#endif // _di_level_0_parameter_checking_
/**
- * Test that function fails.
+ * Test that function works.
*
* @see f_account_name_group_by_id()
*/
-extern void test__f_account_name_group_by_id__fails(void **state);
+extern void test__f_account_name_group_by_id__works(void **state);
#endif // _TEST__F_account_name_group_by_id_
extern "C" {
#endif
+void test__f_account_name_user_by_id__fails(void **state) {
+
+ const long size = 20;
+ uid_t uid = 0;
+ f_string_dynamic_t name = f_string_dynamic_t_initialize;
+
+ int errnos[] = {
+ EINTR,
+ EIO,
+ EMFILE,
+ ENFILE,
+ ENOMEM,
+ ERANGE,
+ mock_errno_generic,
+ };
+
+ f_status_t statuss[] = {
+ F_interrupt,
+ F_input_output,
+ F_file_descriptor_max,
+ F_file_open_max,
+ F_memory_not,
+ F_buffer_too_small,
+ F_failure,
+ };
+
+ for (int i = 0; i < 7; ++i) {
+
+ will_return(__wrap_sysconf, size);
+ will_return(__wrap_getpwuid_r, true);
+ will_return(__wrap_getpwuid_r, errnos[i]);
+
+ const f_status_t status = f_account_name_user_by_id(uid, &name);
+
+ assert_int_equal(F_status_set_fine(status), statuss[i]);
+ } // for
+
+ f_string_dynamic_resize(0, &name);
+}
+
void test__f_account_name_user_by_id__not_found(void **state) {
const long size = 20;
f_string_dynamic_resize(0, &name);
}
+#ifndef _di_level_0_parameter_checking_
+ void test__f_account_name_user_by_id__parameter_checking(void **state) {
+
+ {
+ const f_status_t status = f_account_name_user_by_id(0, 0);
+
+ assert_int_equal(F_status_set_fine(status), F_parameter);
+ }
+ }
+#endif // _di_level_0_parameter_checking_
+
void test__f_account_name_user_by_id__works(void **state) {
const long size = 20;
f_string_dynamic_resize(0, &name);
}
-void test__f_account_name_user_by_id__fails(void **state) {
-
- const long size = 20;
- uid_t uid = 0;
- f_string_dynamic_t name = f_string_dynamic_t_initialize;
-
- int errnos[] = {
- EINTR,
- EIO,
- EMFILE,
- ENFILE,
- ENOMEM,
- ERANGE,
- mock_errno_generic,
- };
-
- f_status_t statuss[] = {
- F_interrupt,
- F_input_output,
- F_file_descriptor_max,
- F_file_open_max,
- F_memory_not,
- F_buffer_too_small,
- F_failure,
- };
-
- for (int i = 0; i < 7; ++i) {
-
- will_return(__wrap_sysconf, size);
- will_return(__wrap_getpwuid_r, true);
- will_return(__wrap_getpwuid_r, errnos[i]);
-
- const f_status_t status = f_account_name_user_by_id(uid, &name);
-
- assert_int_equal(F_status_set_fine(status), statuss[i]);
- } // for
-
- f_string_dynamic_resize(0, &name);
-}
-
#ifdef __cplusplus
} // extern "C"
#endif
#define _TEST__F_account_name_user_by_id_
/**
+ * Test that function fails.
+ *
+ * @see f_account_name_user_by_id()
+ */
+extern void test__f_account_name_user_by_id__fails(void **state);
+
+/**
* Test that function works but the group does not exist.
*
* @see f_account_name_user_by_id()
extern void test__f_account_name_user_by_id__not_found(void **state);
/**
- * Test that function works.
+ * Test that parameter checking works as expected.
*
* @see f_account_name_user_by_id()
*/
-extern void test__f_account_name_user_by_id__works(void **state);
+#ifndef _di_level_0_parameter_checking_
+ extern void test__f_account_name_user_by_id__parameter_checking(void **state);
+#endif // _di_level_0_parameter_checking_
/**
- * Test that function fails.
+ * Test that function works.
*
* @see f_account_name_user_by_id()
*/
-extern void test__f_account_name_user_by_id__fails(void **state);
+extern void test__f_account_name_user_by_id__works(void **state);
#endif // _TEST__F_account_name_user_by_id_
int main(void) {
const struct CMUnitTest tests[] = {
+ cmocka_unit_test(test__f_account_by_id__fails),
cmocka_unit_test(test__f_account_by_id__not_found),
cmocka_unit_test(test__f_account_by_id__works),
- cmocka_unit_test(test__f_account_by_id__fails),
+ cmocka_unit_test(test__f_account_by_name__fails),
cmocka_unit_test(test__f_account_by_name__not_found),
cmocka_unit_test(test__f_account_by_name__works),
- cmocka_unit_test(test__f_account_by_name__fails),
- cmocka_unit_test(test__f_account_id_group_by_name__not_found),
- cmocka_unit_test(test__f_account_id_group_by_name__works),
cmocka_unit_test(test__f_account_id_group_by_name__fails),
-
- cmocka_unit_test(test__f_account_id_user_by_name__not_found),
- cmocka_unit_test(test__f_account_id_user_by_name__works),
- cmocka_unit_test(test__f_account_id_user_by_name__fails),
-
cmocka_unit_test(test__f_account_id_group_by_name__not_found),
cmocka_unit_test(test__f_account_id_group_by_name__works),
- cmocka_unit_test(test__f_account_id_group_by_name__fails),
+ cmocka_unit_test(test__f_account_id_user_by_name__fails),
cmocka_unit_test(test__f_account_id_user_by_name__not_found),
cmocka_unit_test(test__f_account_id_user_by_name__works),
- cmocka_unit_test(test__f_account_id_user_by_name__fails),
+
+ cmocka_unit_test(test__f_account_name_group_by_id__fails),
+ cmocka_unit_test(test__f_account_name_group_by_id__not_found),
+ cmocka_unit_test(test__f_account_name_group_by_id__works),
+
+ cmocka_unit_test(test__f_account_name_user_by_id__fails),
+ cmocka_unit_test(test__f_account_name_user_by_id__not_found),
+ cmocka_unit_test(test__f_account_name_user_by_id__works),
+
+ #ifndef _di_level_0_parameter_checking_
+ cmocka_unit_test(test__f_account_by_id__parameter_checking),
+ cmocka_unit_test(test__f_account_by_name__parameter_checking),
+ cmocka_unit_test(test__f_account_id_group_by_name__parameter_checking),
+ cmocka_unit_test(test__f_account_id_user_by_name__parameter_checking),
+ cmocka_unit_test(test__f_account_name_group_by_id__parameter_checking),
+ cmocka_unit_test(test__f_account_name_user_by_id__parameter_checking),
+ #endif // _di_level_0_parameter_checking_
};
return cmocka_run_group_tests(tests, setup, setdown);