1 /* 2 * Copyright 2011, Axel Dörfler, axeld@pinc-software.de. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef NETWORK_INTERFACE_TEST_H 6 #define NETWORK_INTERFACE_TEST_H 7 8 9 #include <TestCase.h> 10 #include <TestSuite.h> 11 12 13 class NetworkInterfaceTest : public CppUnit::TestCase { 14 public: 15 NetworkInterfaceTest(); 16 virtual ~NetworkInterfaceTest(); 17 18 void TestUnset(); 19 void TestFindAddress(); 20 void TestFindFirstAddress(); 21 22 static void AddTests(BTestSuite& suite); 23 }; 24 25 26 #endif // NETWORK_INTERFACE_TEST_H 27