xref: /haiku/src/tests/apps/haikudepot/HaikuDepotTestAddon.cpp (revision 6aff37d1c79e20748c683ae224bd629f88a5b0be)
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