BsScriptEditorTestSuite.h 634 B

1234567891011121314151617181920212223242526
  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 "Testing/BsTestSuite.h"
  6. namespace bs
  7. {
  8. /** @addtogroup EditorScript
  9. * @{
  10. */
  11. /** Performs editor managed unit tests. */
  12. class ScriptEditorTestSuite : public TestSuite
  13. {
  14. public:
  15. ScriptEditorTestSuite();
  16. private:
  17. /** Triggers execution of managed unit tests. */
  18. void runManagedTests();
  19. };
  20. /** @} */
  21. }