Revert "Apply coding style"

This reverts commit 9b55f2dec0.

Sorting the includes creates some problems.
This commit is contained in:
Michael Vetter
2020-07-07 13:53:30 +02:00
parent 28fde3cd01
commit a4cadf78fa
214 changed files with 17576 additions and 19566 deletions

View File

@@ -1,27 +1,24 @@
#include <cmocka.h>
#include <setjmp.h>
#include <stdarg.h>
#include <stddef.h>
#include <setjmp.h>
#include <cmocka.h>
#include <stdlib.h>
#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);
@@ -29,10 +26,9 @@ 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);
@@ -41,16 +37,14 @@ 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);
@@ -63,21 +57,19 @@ 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);