* Forgot to add the test to the suite.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40423 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2011-02-10 18:40:27 +00:00
parent ce9e476882
commit 135d98d622
@@ -1,5 +1,5 @@
/*
* Copyright 2010, Axel Dörfler, [email protected].
* Copyright 2010-2011, Axel Dörfler, [email protected].
* Distributed under the terms of the MIT License.
*/
@@ -8,6 +8,7 @@
#include <TestSuiteAddon.h>
#include "NetworkAddressTest.h"
#include "NetworkInterfaceTest.h"
BTestSuite*
@@ -16,6 +17,7 @@ getTestSuite()
BTestSuite* suite = new BTestSuite("NetAPI");
NetworkAddressTest::AddTests(*suite);
NetworkInterfaceTest::AddTests(*suite);
return suite;
}