BsUtilityTest.cpp 511 B

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