1//************************************ bs::framework - Copyright 2018 Marko Pintera **************************************//
2//*********** Licensed under the MIT license. See LICENSE.md for full terms. This notice is not to be removed. ***********//
3#include "Testing/BsConsoleTestOutput.h"
4#include "Private/UnitTests/BsUtilityTestSuite.h"
5
6using namespace bs;
7
8int main()
9{
10 SPtr<TestSuite> tests = UtilityTestSuite::create<UtilityTestSuite>();
11
12 ConsoleTestOutput testOutput;
13 tests->run(testOutput);
14
15 return 0;
16}