| 123456789101112131415161718192021222324252627282930 |
- #define CR_HOST
- #include <cr.h>
- #include <gtest/gtest.h>
- #include <entt/core/utility.hpp>
- #include <entt/signal/dispatcher.hpp>
- #include "types.h"
- struct listener {
- void on(message msg) { value = msg.payload; }
- int value{};
- };
- TEST(Lib, Dispatcher) {
- entt::dispatcher dispatcher;
- listener listener;
- ASSERT_EQ(listener.value, 0);
- dispatcher.sink<message>().connect<entt::overload<void(message)>(&listener::on)>(listener);
- cr_plugin ctx;
- ctx.userdata = &dispatcher;
- cr_plugin_load(ctx, PLUGIN);
- cr_plugin_update(ctx);
- ASSERT_EQ(listener.value, 42);
- cr_plugin_close(ctx);
- }
|