| 123456789101112131415161718192021222324 |
- //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
- //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
- #pragma once
- #include "BsScriptEditorPrerequisites.h"
- #include "BsTestSuite.h"
- namespace BansheeEngine
- {
- /**
- * @brief Performs editor managed unit tests.
- */
- class ScriptEditorTestSuite : public TestSuite
- {
- public:
- ScriptEditorTestSuite();
- private:
- /**
- * @brief Triggers execution of managed unit tests.
- */
- void runManagedTests();
- };
- }
|