mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-26 04:06: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.
5 lines
259 B
C
5 lines
259 B
C
void returns_false_when_chat_session_does_not_exist(void** state);
|
|
void creates_chat_session_on_recipient_activity(void** state);
|
|
void replaces_chat_session_on_recipient_activity_with_different_resource(void** state);
|
|
void removes_chat_session(void** state);
|