Files
entt/test/lib/dispatcher/plugin/main.cpp
2024-02-23 14:03:44 +01:00

36 lines
698 B
C++

#define CR_HOST
#include <gtest/gtest.h>
#include <common/boxed_type.h>
#include <common/listener.h>
#include <cr.h>
#include <entt/signal/dispatcher.hpp>
struct listener {
void on(test::boxed_int msg) {
value = msg.value;
}
int value{};
};
TEST(Lib, Dispatcher) {
entt::dispatcher dispatcher;
test::listener<test::boxed_int> listener;
ASSERT_EQ(listener.value, 0);
dispatcher.sink<test::boxed_int>().connect<&test::listener<test::boxed_int>::on>(listener);
cr_plugin ctx;
cr_plugin_load(ctx, PLUGIN);
ctx.userdata = &dispatcher;
cr_plugin_update(ctx);
ASSERT_EQ(listener.value, 4);
dispatcher = {};
cr_plugin_close(ctx);
}