xref: /haiku/src/tests/system/network/posixnet/PosixNetTestAddon.cpp (revision 87f4776937505e3014251c9c3434be78ae29d7d0)
1 /*
2  * Copyright 2014 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 "GetAddrInfo.h"
11 #include "SocketTests.h"
12 
13 
14 BTestSuite*
15 getTestSuite()
16 {
17 	BTestSuite* suite = new BTestSuite("PosixNet");
18 
19 	GetAddrInfoTest::AddTests(*suite);
20 	SocketTests::AddTests(*suite);
21 
22 	return suite;
23 }
24