1 /* 2 * Copyright 2017, Andrew Lindesay, apl@lindesay.co.nz 3 * Distributed under the terms of the MIT License. 4 */ 5 6 #include <TestSuite.h> 7 #include <TestSuiteAddon.h> 8 9 #include "StandardMetaDataJsonEventListenerTest.h" 10 11 12 BTestSuite* 13 getTestSuite() 14 { 15 BTestSuite* suite = new BTestSuite("HaikuDepot"); 16 17 StandardMetaDataJsonEventListenerTest::AddTests(*suite); 18 19 return suite; 20 } 21