xref: /haiku/src/tests/kits/net/service/GeolocationTest.h (revision bb83316a5811a550c4f850d07fa8e328e7ac0a94)
1  /*
2   * Copyright 2014 Haiku, inc.
3   * Distributed under the terms of the MIT License.
4   */
5  #ifndef GEOLOCATION_TEST_H
6  #define GEOLOCAITON_TEST_H
7  
8  
9  #include <TestCase.h>
10  #include <TestSuite.h>
11  
12  
13  class GeolocationTest: public BTestCase {
14  public:
15  					GeolocationTest();
16  
17  			void	TestLocateSelf();
18  			void	TestCountry();
19  
20  	static	void	AddTests(BTestSuite& suite);
21  };
22  
23  
24  #endif
25