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
14BTestSuite*
15getTestSuite()
16{
17	BTestSuite* suite = new BTestSuite("PosixNet");
18
19	GetAddrInfoTest::AddTests(*suite);
20	SocketTests::AddTests(*suite);
21
22	return suite;
23}
24