BsScriptEditorTestSuite.h 609 B

123456789101112131415161718192021222324
  1. //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
  2. //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
  3. #pragma once
  4. #include "BsScriptEditorPrerequisites.h"
  5. #include "BsTestSuite.h"
  6. namespace BansheeEngine
  7. {
  8. /**
  9. * @brief Performs editor managed unit tests.
  10. */
  11. class ScriptEditorTestSuite : public TestSuite
  12. {
  13. public:
  14. ScriptEditorTestSuite();
  15. private:
  16. /**
  17. * @brief Triggers execution of managed unit tests.
  18. */
  19. void runManagedTests();
  20. };
  21. }