BsUtilityTestSuite.h 483 B

12345678910111213141516171819
  1. //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
  2. //**************** Copyright (c) 2017 Marko Pintera ([email protected]). All rights reserved. **********************//
  3. #pragma once
  4. #include "Testing/BsTestSuite.h"
  5. namespace bs
  6. {
  7. class UtilityTestSuite : public TestSuite
  8. {
  9. public:
  10. UtilityTestSuite();
  11. void startUp() override;
  12. void shutDown() override;
  13. private:
  14. void testOctree();
  15. };
  16. }