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