mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-25 14:56:23 +00:00
tests: standardize naming convention
Use a behavior-driven naming convention for unit tests. Functions are now named using the pattern: [unit]__[verb]__[scenario] The __ works as a semantic separator. Examples: * jid_create__returns__null_from_null() * cmd_connect__shows__usage_when_no_server_value Benefits: * Easy to find all tests associated with a specific function using the mandatory prefix. * Test output in CI now explicitly describes the unit, the expected outcome, and the scenario being tested. Also disabled keyhandlers tests due to missing code in src/ui.
This commit is contained in:
@@ -1,17 +1,21 @@
|
||||
void cmd_roster_shows_message_when_disconnecting(void** state);
|
||||
void cmd_roster_shows_message_when_connecting(void** state);
|
||||
void cmd_roster_shows_message_when_disconnected(void** state);
|
||||
void cmd_roster_shows_message_when_undefined(void** state);
|
||||
void cmd_roster_shows_roster_when_no_args(void** state);
|
||||
void cmd_roster_add_shows_message_when_no_jid(void** state);
|
||||
void cmd_roster_add_sends_roster_add_request(void** state);
|
||||
void cmd_roster_remove_shows_message_when_no_jid(void** state);
|
||||
void cmd_roster_remove_sends_roster_remove_request(void** state);
|
||||
void cmd_roster_remove_nickname_sends_roster_remove_request(void** state);
|
||||
void cmd_roster_nick_shows_message_when_no_jid(void** state);
|
||||
void cmd_roster_nick_shows_message_when_no_nick(void** state);
|
||||
void cmd_roster_nick_shows_message_when_no_contact_exists(void** state);
|
||||
void cmd_roster_nick_sends_name_change_request(void** state);
|
||||
void cmd_roster_clearnick_shows_message_when_no_jid(void** state);
|
||||
void cmd_roster_clearnick_shows_message_when_no_contact_exists(void** state);
|
||||
void cmd_roster_clearnick_sends_name_change_request_with_empty_nick(void** state);
|
||||
#ifndef TESTS_TEST_CMD_ROSTER_H
|
||||
#define TESTS_TEST_CMD_ROSTER_H
|
||||
|
||||
void cmd_roster__shows__message_when_disconnecting(void** state);
|
||||
void cmd_roster__shows__message_when_connecting(void** state);
|
||||
void cmd_roster__shows__message_when_disconnected(void** state);
|
||||
void cmd_roster__shows__roster_when_no_args(void** state);
|
||||
void cmd_roster__shows__message_when_add_no_jid(void** state);
|
||||
void cmd_roster__tests__add_sends_roster_add_request(void** state);
|
||||
void cmd_roster__shows__message_when_remove_no_jid(void** state);
|
||||
void cmd_roster__tests__remove_sends_roster_remove_request(void** state);
|
||||
void cmd_roster__tests__remove_nickname_sends_roster_remove_request(void** state);
|
||||
void cmd_roster__shows__message_when_nick_no_jid(void** state);
|
||||
void cmd_roster__shows__message_when_nick_no_nick(void** state);
|
||||
void cmd_roster__shows__message_when_nick_no_contact_exists(void** state);
|
||||
void cmd_roster__tests__nick_sends_name_change_request(void** state);
|
||||
void cmd_roster__shows__message_when_clearnick_no_jid(void** state);
|
||||
void cmd_roster__shows__message_when_clearnick_no_contact_exists(void** state);
|
||||
void cmd_roster__tests__clearnick_sends_name_change_request_with_empty_nick(void** state);
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user