xref: /haiku/src/tests/kits/net/netservices2/ServicesKitTestAddon.cpp (revision 52c4471a3024d2eb81fe88e2c3982b9f8daa5e56)
1 /*
2  * Copyright 2021 Haiku, Inc.
3  * Distributed under the terms of the MIT License.
4  */
5 
6 
7 #include <TestSuite.h>
8 #include <TestSuiteAddon.h>
9 
10 #include "ExclusiveBorrowTest.h"
11 #include "HttpProtocolTest.h"
12 
13 
14 BTestSuite*
15 getTestSuite()
16 {
17 	BTestSuite* suite = new BTestSuite("NetServices2Kit");
18 
19 	ExclusiveBorrowTest::AddTests(*suite);
20 	HttpProtocolTest::AddTests(*suite);
21 	HttpIntegrationTest::AddTests(*suite);
22 
23 	return suite;
24 }
25