mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-22 08:36:22 +00:00
cleanup: Map test files according to structure in src
For example cmd_account() is located in src/command/cmd_funcs.c. The unit test was located in tests/unittests/test_cmd_account.c. Let's move it to a subdirectory like tests/unittests/command/test_cmd_account.c to correpsond to the same structure.
This commit is contained in:
9
tests/unittests/command/test_cmd_alias.h
Normal file
9
tests/unittests/command/test_cmd_alias.h
Normal file
@@ -0,0 +1,9 @@
|
||||
void cmd_alias_add_shows_usage_when_no_args(void** state);
|
||||
void cmd_alias_add_shows_usage_when_no_value(void** state);
|
||||
void cmd_alias_remove_shows_usage_when_no_args(void** state);
|
||||
void cmd_alias_show_usage_when_invalid_subcmd(void** state);
|
||||
void cmd_alias_add_adds_alias(void** state);
|
||||
void cmd_alias_add_shows_message_when_exists(void** state);
|
||||
void cmd_alias_remove_removes_alias(void** state);
|
||||
void cmd_alias_remove_shows_message_when_no_alias(void** state);
|
||||
void cmd_alias_list_shows_all_aliases(void** state);
|
||||
Reference in New Issue
Block a user