BsScriptEditorTestSuite.h 359 B

12345678910111213141516171819202122
  1. #pragma once
  2. #include "BsScriptEditorPrerequisites.h"
  3. #include "BsTestSuite.h"
  4. namespace BansheeEngine
  5. {
  6. /**
  7. * @brief Performs editor managed unit tests.
  8. */
  9. class ScriptEditorTestSuite : public TestSuite
  10. {
  11. public:
  12. ScriptEditorTestSuite();
  13. private:
  14. /**
  15. * @brief Triggers execution of managed unit tests.
  16. */
  17. void runManagedTests();
  18. };
  19. }