mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-29 08:46:21 +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:
14
tests/unittests/event/test_server_events.h
Normal file
14
tests/unittests/event/test_server_events.h
Normal file
@@ -0,0 +1,14 @@
|
||||
void console_doesnt_show_online_presence_when_set_none(void** state);
|
||||
void console_shows_online_presence_when_set_online(void** state);
|
||||
void console_shows_online_presence_when_set_all(void** state);
|
||||
void console_doesnt_show_dnd_presence_when_set_none(void** state);
|
||||
void console_doesnt_show_dnd_presence_when_set_online(void** state);
|
||||
void console_shows_dnd_presence_when_set_all(void** state);
|
||||
void handle_message_error_when_no_recipient(void** state);
|
||||
void handle_message_error_when_recipient_cancel(void** state);
|
||||
void handle_message_error_when_recipient_cancel_disables_chat_session(void** state);
|
||||
void handle_message_error_when_recipient_and_no_type(void** state);
|
||||
void handle_presence_error_when_no_recipient(void** state);
|
||||
void handle_presence_error_when_from_recipient(void** state);
|
||||
void handle_offline_removes_chat_session(void** state);
|
||||
void lost_connection_clears_chat_sessions(void** state);
|
||||
Reference in New Issue
Block a user