mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-21 22:06:21 +00:00
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.
15 lines
501 B
C
15 lines
501 B
C
#ifndef TESTS_TEST_MUC_H
|
|
#define TESTS_TEST_MUC_H
|
|
|
|
int muc_before_test(void** state);
|
|
int muc_after_test(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
|