1 /* 2 * Copyright 2012, 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 "CalendarViewTest.h" 11 #include "GeolocationTest.h" 12 #include "NaturalCompareTest.h" 13 14 15 BTestSuite* 16 getTestSuite() 17 { 18 BTestSuite* suite = new BTestSuite("Shared"); 19 20 CalendarViewTest::AddTests(*suite); 21 GeolocationTest::AddTests(*suite); 22 NaturalCompareTest::AddTests(*suite); 23 24 return suite; 25 } 26