/* * Copyright 2012, Axel Dörfler, axeld@pinc-software.de. * Distributed under the terms of the MIT License. */ #include #include #include "CalendarViewTest.h" #include "GeolocationTest.h" #include "NaturalCompareTest.h" BTestSuite* getTestSuite() { BTestSuite* suite = new BTestSuite("Shared"); CalendarViewTest::AddTests(*suite); GeolocationTest::AddTests(*suite); NaturalCompareTest::AddTests(*suite); return suite; }