Apply coding style

This commit is contained in:
Michael Vetter
2020-07-07 14:18:57 +02:00
parent 95015cec56
commit a2726b6a7d
213 changed files with 19064 additions and 17062 deletions

View File

@@ -6,19 +6,22 @@
#include "xmpp/muc.h"
void muc_before_test(void **state)
void
muc_before_test(void** state)
{
muc_init();
}
void muc_after_test(void **state)
void
muc_after_test(void** state)
{
muc_close();
}
void test_muc_invites_add(void **state)
void
test_muc_invites_add(void** state)
{
char *room = "room@conf.server";
char* room = "room@conf.server";
muc_invites_add(room, NULL);
gboolean invite_exists = muc_invites_contain(room);
@@ -26,9 +29,10 @@ void test_muc_invites_add(void **state)
assert_true(invite_exists);
}
void test_muc_remove_invite(void **state)
void
test_muc_remove_invite(void** state)
{
char *room = "room@conf.server";
char* room = "room@conf.server";
muc_invites_add(room, NULL);
muc_invites_remove(room);
@@ -37,14 +41,16 @@ void test_muc_remove_invite(void **state)
assert_false(invite_exists);
}
void test_muc_invites_count_0(void **state)
void
test_muc_invites_count_0(void** state)
{
int invite_count = muc_invites_count();
assert_true(invite_count == 0);
}
void test_muc_invites_count_5(void **state)
void
test_muc_invites_count_5(void** state)
{
muc_invites_add("room1@conf.server", NULL);
muc_invites_add("room2@conf.server", NULL);
@@ -57,19 +63,21 @@ void test_muc_invites_count_5(void **state)
assert_true(invite_count == 5);
}
void test_muc_room_is_not_active(void **state)
void
test_muc_room_is_not_active(void** state)
{
char *room = "room@server.org";
char* room = "room@server.org";
gboolean room_is_active = muc_active(room);
assert_false(room_is_active);
}
void test_muc_active(void **state)
void
test_muc_active(void** state)
{
char *room = "room@server.org";
char *nick = "bob";
char* room = "room@server.org";
char* nick = "bob";
muc_join(room, nick, NULL, FALSE);
gboolean room_is_active = muc_active(room);