aboutsummaryrefslogtreecommitdiff
path: root/src/test/ScriptECSTest.cpp
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-12-10 19:24:46 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2024-12-10 19:24:46 +0100
commit4414fe5079b44d5bbcbba89bb1e71ce01b949226 (patch)
treebba8287de88f5eeca992f000ee425c067d616ce0 /src/test/ScriptECSTest.cpp
parent1e5c6c5cf0d1be976e0e59099ddcfc62940ef1be (diff)
parent0cb7f2f82ca167656b3c5cb9f0cc3b44c59cb0eb (diff)
merge master
Diffstat (limited to 'src/test/ScriptECSTest.cpp')
-rw-r--r--src/test/ScriptECSTest.cpp41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/test/ScriptECSTest.cpp b/src/test/ScriptECSTest.cpp
new file mode 100644
index 0000000..1ec33ba
--- /dev/null
+++ b/src/test/ScriptECSTest.cpp
@@ -0,0 +1,41 @@
+#include <gtest/gtest.h>
+
+#define protected public
+
+#include <crepe/api/BehaviorScript.h>
+#include <crepe/api/GameObject.h>
+#include <crepe/api/Metadata.h>
+#include <crepe/api/Script.h>
+#include <crepe/manager/ComponentManager.h>
+#include <crepe/system/ScriptSystem.h>
+
+#include "ScriptTest.h"
+
+using namespace std;
+using namespace crepe;
+using namespace testing;
+
+class ScriptECSTest : public ScriptTest {
+public:
+ class TestComponent : public Component {
+ using Component::Component;
+ };
+};
+
+TEST_F(ScriptECSTest, GetOwnComponent) {
+ MyScript & script = this->script;
+ Metadata & metadata = script.get_component<Metadata>();
+
+ EXPECT_EQ(metadata.name, OBJ_NAME);
+}
+
+TEST_F(ScriptECSTest, GetOwnComponents) {
+ const unsigned COUNT = 4;
+
+ for (unsigned i = 0; i < COUNT; i++) entity.add_component<TestComponent>();
+
+ MyScript & script = this->script;
+ RefVector<TestComponent> components = script.get_components<TestComponent>();
+
+ EXPECT_EQ(components.size(), COUNT);
+}