aboutsummaryrefslogtreecommitdiff
path: root/src/test/ScriptECSTest.cpp
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-12-10 19:24:55 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2024-12-10 19:24:55 +0100
commit876746db205b259430b6b438227c986dbf0cb59d (patch)
treea0e8e573ca64b23a72f67725ad3efbe009892215 /src/test/ScriptECSTest.cpp
parent963c6c0d3e77c20ec2a2ca2b045bfae3e070702f (diff)
parent0cb7f2f82ca167656b3c5cb9f0cc3b44c59cb0eb (diff)
Merge branch 'master' into loek/doxygen
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);
+}