BsUtilityTest.cpp 509 B

12345678910111213141516
  1. //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
  2. //**************** Copyright (c) 2017 Marko Pintera ([email protected]). All rights reserved. **********************//
  3. #include "Testing/BsConsoleTestOutput.h"
  4. #include "UnitTests/BsUtilityTestSuite.h"
  5. using namespace bs;
  6. int main()
  7. {
  8. SPtr<TestSuite> tests = UtilityTestSuite::create<UtilityTestSuite>();
  9. ConsoleTestOutput testOutput;
  10. tests->run(testOutput);
  11. return 0;
  12. }