/* * Copyright 2017, Andrew Lindesay, apl@lindesay.co.nz * Distributed under the terms of the MIT License. */ #include #include #include "StandardMetaDataJsonEventListenerTest.h" #include "DumpExportRepositoryJsonListenerTest.h" #include "ListTest.h" BTestSuite* getTestSuite() { BTestSuite* suite = new BTestSuite("HaikuDepot"); StandardMetaDataJsonEventListenerTest::AddTests(*suite); DumpExportRepositoryJsonListenerTest::AddTests(*suite); ListTest::AddTests(*suite); return suite; }