BsUtilityTest.cpp 516 B

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