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,9 +1,14 @@
|
||||
#ifndef TESTS_TEST_MUC_H
|
||||
#define TESTS_TEST_MUC_H
|
||||
|
||||
int muc_before_test(void** state);
|
||||
int muc_after_test(void** state);
|
||||
|
||||
void test_muc_invites_add(void** state);
|
||||
void test_muc_remove_invite(void** state);
|
||||
void test_muc_invites_count_0(void** state);
|
||||
void test_muc_invites_count_5(void** state);
|
||||
void test_muc_room_is_not_active(void** state);
|
||||
void test_muc_active(void** state);
|
||||
void muc_invites_add__updates__invites_list(void** state);
|
||||
void muc_invites_remove__updates__invites_list(void** state);
|
||||
void muc_invites_count__returns__0_when_no_invites(void** state);
|
||||
void muc_invites_count__returns__5_when_five_invites_added(void** state);
|
||||
void muc_active__is__false_when_not_joined(void** state);
|
||||
void muc_active__is__true_when_joined(void** state);
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user