xref: /haiku/src/tests/kits/net/netservices2/ServicesKitTestAddon.cpp (revision 5e9fd9f60d6a4f62bf88b67465e88990413355c8)
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