- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我正在尝试编写一些单元测试(使用 xctest)来验证我的 Google map mapView 是否以我的“当前位置”为中心。
- (void) testMapCentersOnMyLocation {
WtHomeController *controller = [[WtHomeController alloc] init];
[controller viewDidLoad];
//Simulator's location is stubbed to be in San Francisco, at this lat/lon
CLLocationDegrees expectedLatitude = 37.787359f;
CLLocationDegrees expectedLongitude = -122.408227f;
// FIXME this loop runs forever - location isn't being updated in simulator.
while(controller.firstLocationUpdate == NO) {
NSLog(@"Waiting on location...");
NSLog(@"my location is: %f, %f", controller.mapView.myLocation.coordinate.latitude, controller.mapView.myLocation.coordinate.longitude);
}
CLLocationCoordinate2D mapCenter = [controller.mapView.camera target];
XCTAssertEqualWithAccuracy(mapCenter.latitude, expectedLatitude, 0.00001f);
XCTAssertEqualWithAccuracy(mapCenter.longitude, expectedLongitude, 0.00001f);
}
下面是 Controller 分配mapView的相关方法
@interface WtHomeController ()
@property(nonatomic, strong) GMSMapView *mapView;
@property(nonatomic) BOOL firstLocationUpdate;
@end
@implementation WtHomeController
- (void)viewDidLoad {
[super viewDidLoad];
//Initialize map pane on Los Angeles lat/lon
CLLocationDegrees latitude = WtLosAngelesLatitude;
CLLocationDegrees longitude = WtLosAngelesLongitude;
GMSCameraPosition *camera = [GMSCameraPosition cameraWithLatitude:latitude
longitude:longitude
zoom:6];
self.mapView = [GMSMapView mapWithFrame:CGRectZero camera:camera];
self.mapView.myLocationEnabled = YES;
// Listen to the myLocation property of GMSMapView.
[self.mapView addObserver:self
forKeyPath:@"myLocation"
options:NSKeyValueObservingOptionNew
context:NULL];
self.view = self.mapView;
}
- (void)dealloc {
[self.mapView removeObserver:self
forKeyPath:@"myLocation"
context:NULL];
}
#pragma mark - KVO updates
- (void)observeValueForKeyPath:(NSString *)keyPath
ofObject:(id)object
change:(NSDictionary *)change
context:(void *)context {
DDLogDebug(@"my location is: %f, %f", self.mapView.myLocation.coordinate.latitude, self.mapView.myLocation.coordinate.longitude);
if( [keyPath isEqualToString:@"myLocation"] ) {
if (!self.firstLocationUpdate) {
// If the first location update has not yet been recieved, then jump to that
// location.
self.firstLocationUpdate = YES;
CLLocation *location = [change objectForKey:NSKeyValueChangeNewKey];
self.mapView.camera = [GMSCameraPosition cameraWithTarget:location.coordinate
zoom:14];
}
}
}
到目前为止,我已经弄清楚了:我可以在构建我的应用程序时通过在 Xcode 中编辑方案首选项来模拟位置。
然后,当我从 xcode 构建应用程序时,我可以在模拟器中看到我的位置已更新为“旧金山”。这是我在模拟器上构建和运行时的日志输出:
2014-04-02 17:28:09.253 DEBUG WtHomeController: observeValueForKeyPath:ofObject:change:context: 109 - my location is: 37.787359, -122.408227
很酷。但是在运行单元测试时,我的位置永远不会更新。
测试日志的输出是:
2014-04-02 17:02:41.919 wetap[71081:60b] Waiting on location...
2014-04-02 17:02:41.919 wetap[71081:60b] my location is: 0.000000, 0.000000
2014-04-02 17:02:41.919 wetap[71081:60b] Waiting on location...
2014-04-02 17:02:41.920 wetap[71081:60b] my location is: 0.000000, 0.000000
2014-04-02 17:02:41.920 wetap[71081:60b] Waiting on location...
2014-04-02 17:02:41.921 wetap[71081:60b] my location is: 0.000000, 0.000000
2014-04-02 17:02:41.921 wetap[71081:60b] Waiting on location...
2014-04-02 17:02:41.921 wetap[71081:60b] my location is: 0.000000, 0.000000
...to infinity
如何模拟单元测试的位置?
根据@Paulw11 的建议编辑我的测试:
WtAppDelegate *appdelegate = (WtAppDelegate *)[UIApplication sharedApplication].delegate;
CLLocationManager *locationManager = appdelegate.locationManager;
[locationManager startUpdatingLocation];
while(controller.firstLocationUpdate == NO) {
NSLog(@"Waiting on location...");
NSLog(@"my location is: %f, %f", controller.mapView.myLocation.coordinate.latitude, controller.mapView.myLocation.coordinate.longitude);
NSLog(@"Location manager think's we're at: %@", [locationManager location]);
}
以及运行该测试的新日志输出:
2014-04-02 18:08:56.394 wetap[73922:60b] Location manager think's we're at: (null)
2014-04-02 18:08:56.394 wetap[73922:60b] Waiting on location...
2014-04-02 18:08:56.394 wetap[73922:60b] my location is: 0.000000, 0.000000
2014-04-02 18:08:56.395 wetap[73922:60b] Location manager think's we're at: (null)
2014-04-02 18:08:56.396 wetap[73922:60b] Waiting on location...
2014-04-02 18:08:56.396 wetap[73922:60b] my location is: 0.000000, 0.000000
2014-04-02 18:08:56.397 wetap[73922:60b] Location manager think's we're at: (null)
最佳答案
Google map View 只是一个 View ,它不会自动连接到 iOS 中的位置跟踪并自行更新。您需要分配一个 CLLocationManager 并使用它的委托(delegate)方法跟踪您的位置。然后,您可以按照此答案更新 myLocation 属性 - GMSMapView myLocation not giving actual location
我认为您没有为 CLLocationManager 设置委托(delegate)方法 - 是 didUpdateLocations
委托(delegate)方法将位置传输到 Google map View
在 viewDidLoad
self.locationManager = [[CLLocationManager alloc]init];
self.locationManager.delegate=self;
[self.locationManager startUpdatingLocation];
实现委托(delegate)方法(请注意,上一个答案中提到的方法 didUpdateLocation
已被弃用并替换为 didUpdateLocations
方法
- (void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations
{
CLLocation *latestLocation=(CLLocation *)[locations lastObject];
[self.mapView animateToLocation:latestLocation.coordinate] <== this is the important bit - it transfers the location from CLLocationManager to the GM view
}
关于ios - 我如何模拟 xctest 的位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22825427/
我有一个使用 XCTest 框架的 CocoaPod。为了将 XCTest 导入 pod,我将 s.frameworks = 'XCTest' 添加到 .podspec 文件。 我现在可以将 XCTe
我正在尝试在 iphone 设备上运行 XCTest,但 Xcode 显示以下消息。 "Logic Testing on iOS devices is not supported. You can r
我认为,我在那里找到的关于主题的所有信息都是有用的信息,但我需要了解更小的步骤。我如何创建测试,如何单击并滑动浏览应用程序中的一些文章,如何测试长按手势,..请提供一些有助于初学者的小示例,谢谢。 最
我正在尝试在 Xcode 中开始使用 tdd,并遵循了一个非常好的 tutorial . 一切顺利。但是,当我想在 Xcode 中创建命令行应用程序(在 c 中)项目时,未创建单独的测试文件夹。 我想
我使用查找器将一些图像(选项卡图标)添加到我的应用程序的目录中,然后使用文件添加将它们添加到项目中,最后在 images.xcassets 中添加图像集,将它们拖到上方以用作选项卡图标。 不知何故,在
在重命名之前,我首先复制了我的项目。重命名后我得到了 Lexical or Preprocessor Issue not found. 错误将我引导至调用 的 myapptests.m 文件 #im
XCTest waitForExpectationsWithTimeout:handler: 的文档指出 Only one -waitForExpectationsWithTimeout:handle
从Xcode Beta 5在iOS 8上运行测试时因以下错误而崩溃: dyld: Symbol not found: _kAXXCAttributeAbsoluteValue Referenced
例如,在使用 icloud 数据填充本地数据的测试成功之前,我不想运行从我的本地数据中选择的函数的测试。 我认为一个合适的单元测试应该在测试本地数据选择方法之前编写一些预定义的本地数据(人们同意吗?)
尝试使用 cocoa pods 将库集成到我的项目时出现以下异常。 dyld:未加载库:@rpath/XCTest.framework/XCTest 引用自:/Users/shoaibahmedqur
我是 ios 世界的新手,正在弄清楚如何从命令行运行测试。 我有 APP.app 和 TEST.xctest(基本上是 KIF 测试)。 我无法弄清楚如何在应用程序(在模拟器和设备上)上运行这些测试。
我觉得我有一个很常见的问题,但不知何故错过了关于最佳实践的备忘录。我想弄清楚如何在 XCTest 中嵌套异步调用。 我正在尝试通过基于 Alamofire 的 REST API 测试/清理 XCTes
我有几个项目正在尝试使用 Xcode 6 Beta 2 构建。这些项目都有某种类型的库使用 XCTest(Kiwi/XCTest 和 Specta),这些库不能在 Xcode 6 中构建,因为 XCT
谁能给我解释一下这里发生了什么?我不明白这个错误是什么意思。 XCTest.framework/XCTest: no matching architecture in universal wrappe
我在此处关注有关使用钥匙串(keychain)的教程 http://code.tutsplus.com/tutorials/securing-and-encrypting-data-on-ios--m
我在Xcode 5.0.2中运行项目时遇到问题 我收到以下错误: dyld: Library not loaded: @rpath/XCTest.framework/Versions/A/XCTest
所以,这是错误,我记录了我的 UI 脚本,但是当我重放 UI 脚本时发生了错误。控制台显示: “dyld:未加载库:@rpath/XCTest.framework/XCTest 引用自:/var/co
我在 中导入了我的旧项目Xcode 6.1 并且上面提到的错误在运行时开始出现,原因是 图片未找到 ,我已经尝试了以下链接中建议的所有答案 Xcode 5.0.2 dyld error 但到目前为止,
在 OS X 10.9.5 中,我从 Xcode 5.1.1 升级到 Xcode 6.0.1(通过 App Store)。 现在在我的项目中 XCTest.framework和 MyAppTests.
在我们的 Jenkins CI slave 上的 iOS 应用程序上运行 UI 测试时,UI 不正确并且我的测试失败。在本地,相同的 UI 符合预期并且测试通过。 我一直无法弄清楚这一点,也无法像在远
我是一名优秀的程序员,十分优秀!