Move geolocation test to the shared kit tests.

* Fix the build.
This commit is contained in:
Adrien Destugues 2014-10-02 08:27:44 +02:00
parent 8a65f8e900
commit 9581e328bd
6 changed files with 7 additions and 4 deletions

View File

@ -7,7 +7,6 @@ UnitTestLib servicekittest.so :
CookieTest.cpp
DataTest.cpp
GeolocationTest.cpp
HttpTest.cpp
UrlTest.cpp

View File

@ -9,7 +9,6 @@
#include "CookieTest.h"
#include "DataTest.h"
#include "GeolocationTest.h"
#include "HttpTest.h"
#include "UrlTest.h"
@ -23,7 +22,6 @@ getTestSuite()
UrlTest::AddTests(*suite);
HttpTest::AddTests(*suite);
DataTest::AddTests(*suite);
GeolocationTest::AddTests(*suite);
return suite;
}

View File

@ -12,6 +12,9 @@
#include <cppunit/TestSuite.h>
using namespace BPrivate;
GeolocationTest::GeolocationTest()
{
}

View File

@ -9,9 +9,10 @@ UnitTestLib libsharedtest.so :
SharedTestAddon.cpp
CalendarViewTest.cpp
GeolocationTest.cpp
NaturalCompareTest.cpp
: be libshared.a [ TargetLibstdc++ ] [ TargetLibsupc++ ]
: be libshared.a bnetapi [ TargetLibstdc++ ] [ TargetLibsupc++ ]
;
SubInclude HAIKU_TOP src tests kits shared shake_filter ;

View File

@ -8,6 +8,7 @@
#include <TestSuiteAddon.h>
#include "CalendarViewTest.h"
#include "GeolocationTest.h"
#include "NaturalCompareTest.h"
@ -17,6 +18,7 @@ getTestSuite()
BTestSuite* suite = new BTestSuite("Shared");
CalendarViewTest::AddTests(*suite);
GeolocationTest::AddTests(*suite);
NaturalCompareTest::AddTests(*suite);
return suite;