Green Sky
5c7231b7a3
git-subtree-dir: external/entt/entt git-subtree-split: fef921132cae7588213d0f9bcd2fb9c8ffd8b7fc
29 lines
486 B
C++
29 lines
486 B
C++
#define CR_HOST
|
|
|
|
#include <gtest/gtest.h>
|
|
#include <cr.h>
|
|
#include "types.h"
|
|
|
|
TEST(Lib, Emitter) {
|
|
test_emitter emitter;
|
|
int value{};
|
|
|
|
ASSERT_EQ(value, 0);
|
|
|
|
emitter.on<message>([&](message msg, test_emitter &owner) {
|
|
value = msg.payload;
|
|
owner.erase<message>();
|
|
});
|
|
|
|
cr_plugin ctx;
|
|
cr_plugin_load(ctx, PLUGIN);
|
|
|
|
ctx.userdata = &emitter;
|
|
cr_plugin_update(ctx);
|
|
|
|
ASSERT_EQ(value, 42);
|
|
|
|
emitter = {};
|
|
cr_plugin_close(ctx);
|
|
}
|