diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2024-05-04 11:41:23 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2024-05-04 11:41:23 +0200 |
commit | 586e66d6fa42c54c90d6ada094deba305a315430 (patch) | |
tree | 8560d482abeba994d9d67bc1cdce59828686f796 /tests | |
parent | a21fa3359d25dfcb2b510cd780a38394e39c7e99 (diff) | |
download | weechat-586e66d6fa42c54c90d6ada094deba305a315430.zip |
tests: add placeholders for tests on relay api remote event functions
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/plugins/relay/api/remote/test-relay-remote-event.cpp | 102 |
1 files changed, 101 insertions, 1 deletions
diff --git a/tests/unit/plugins/relay/api/remote/test-relay-remote-event.cpp b/tests/unit/plugins/relay/api/remote/test-relay-remote-event.cpp index 64c0f5efa..b92618fde 100644 --- a/tests/unit/plugins/relay/api/remote/test-relay-remote-event.cpp +++ b/tests/unit/plugins/relay/api/remote/test-relay-remote-event.cpp @@ -1,5 +1,5 @@ -/* * test-relay-remote-event.cpp - test event functions for relay remote +/* * * Copyright (C) 2024 Sébastien Helleu <flashcode@flashtux.org> * @@ -47,6 +47,86 @@ TEST(RelayRemoteEvent, SearchBuffer) /* * Tests functions: + * relay_remote_event_get_buffer_id + */ + +TEST(RelayRemoteEvent, GetBufferId) +{ + /* TODO: write tests */ +} + +/* + * Tests functions: + * relay_remote_event_cb_line + */ + +TEST(RelayRemoteEvent, CbLine) +{ + /* TODO: write tests */ +} + +/* + * Tests functions: + * relay_remote_event_handle_nick + */ + +TEST(RelayRemoteEvent, HandleNick) +{ + /* TODO: write tests */ +} + +/* + * Tests functions: + * relay_remote_event_handle_nick_group + */ + +TEST(RelayRemoteEvent, HandleNickGroup) +{ + /* TODO: write tests */ +} + +/* + * Tests functions: + * relay_remote_event_cb_nick_group + */ + +TEST(RelayRemoteEvent, CbNickGroup) +{ + /* TODO: write tests */ +} + +/* + * Tests functions: + * relay_remote_event_cb_nick + */ + +TEST(RelayRemoteEvent, CbNick) +{ + /* TODO: write tests */ +} + +/* + * Tests functions: + * relay_remote_event_apply_props + */ + +TEST(RelayRemoteEvent, ApplyProps) +{ + /* TODO: write tests */ +} + +/* + * Tests functions: + * relay_remote_event_buffer_input_cb + */ + +TEST(RelayRemoteEvent, BufferInputCb) +{ + /* TODO: write tests */ +} + +/* + * Tests functions: * relay_remote_event_cb_buffer */ @@ -57,6 +137,26 @@ TEST(RelayRemoteEvent, CbBuffer) /* * Tests functions: + * relay_remote_event_cb_version + */ + +TEST(RelayRemoteEvent, CbVersion) +{ + /* TODO: write tests */ +} + +/* + * Tests functions: + * relay_remote_event_sync_with_remote + */ + +TEST(RelayRemoteEvent, SyncWithRemote) +{ + /* TODO: write tests */ +} + +/* + * Tests functions: * relay_remote_event_recv */ |