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
14BTestSuite*
15getTestSuite()
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