mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-22 20:36:22 +00:00
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.
8 lines
424 B
C
8 lines
424 B
C
void cmd_rooms_shows_message_when_disconnected(void** state);
|
|
void cmd_rooms_shows_message_when_disconnecting(void** state);
|
|
void cmd_rooms_shows_message_when_connecting(void** state);
|
|
void cmd_rooms_shows_message_when_undefined(void** state);
|
|
void cmd_rooms_uses_account_default_when_no_arg(void** state);
|
|
void cmd_rooms_service_arg_used_when_passed(void** state);
|
|
void cmd_rooms_filter_arg_used_when_passed(void** state);
|