1 /* 2 * Copyright 2014 Haiku, inc. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef GET_ADDR_INFO_TEST_H 6 #define GET_ADDR_INFO_TEST_H 7 8 9 #include <TestCase.h> 10 #include <TestSuite.h> 11 12 13 class GetAddrInfoTest: public BTestCase { 14 public: 15 GetAddrInfoTest(); 16 virtual ~GetAddrInfoTest(); 17 18 void EmptyTest(); 19 void AddrConfigTest(); 20 21 static void AddTests(BTestSuite& suite); 22 }; 23 24 25 #endif 26 27