Disable system clone unit test

This commit is contained in:
Lynix
2017-10-14 15:23:22 +02:00
parent 2cac137066
commit 333a7903ff

View File

@@ -1,6 +1,6 @@
#include <NDK/System.hpp> #include <NDK/System.hpp>
#include <Catch/catch.hpp> #include <Catch/catch.hpp>
/*
namespace namespace
{ {
class TestSystem : public Ndk::System<TestSystem> class TestSystem : public Ndk::System<TestSystem>
@@ -23,7 +23,7 @@ namespace
private: private:
int m_value; int m_value;
void OnUpdate(float /*elapsedTime*/) override void OnUpdate(float elapsedTime) override
{ {
} }
}; };
@@ -47,4 +47,4 @@ SCENARIO("System", "[NDK][SYSTEM]")
} }
} }
} }
} }*/