xref: /haiku/src/tests/servers/app/unit_tests/AppServerUnitTestAddOn.cpp (revision c302a243e15e640fae0f689e32cdf0c18749afee)
1 /*
2  * Copyright 2015 Julian Harnath <julian.harnath@rwth-aachen.de>
3  * All rights reserved. Distributed under the terms of the MIT license.
4  */
5 
6 #include <TestSuite.h>
7 #include <TestSuiteAddon.h>
8 
9 #include "SimpleTransformTest.h"
10 
11 
12 BTestSuite*
getTestSuite()13 getTestSuite()
14 {
15 	BTestSuite* suite = new BTestSuite("AppServerUnitTests");
16 
17 	SimpleTransformTest::AddTests(*suite);
18 
19 	return suite;
20 }
21