1 /* 2 * Copyright 2015, Axel Dörfler, axeld@pinc-software.de. 3 * Distributed under the terms of the MIT License. 4 */ 5 6 7 #include <TestSuite.h> 8 #include <TestSuiteAddon.h> 9 10 #include "ConditionsTest.h" 11 #include "SettingsParserTest.h" 12 #include "UtilityTest.h" 13 14 15 BTestSuite* 16 getTestSuite() 17 { 18 BTestSuite* suite = new BTestSuite("LaunchDaemon"); 19 20 SettingsParserTest::AddTests(*suite); 21 ConditionsTest::AddTests(*suite); 22 UtilityTest::AddTests(*suite); 23 24 return suite; 25 } 26