In meinen Unit-Tests, ich bin mit der -[XCTestCase keyValueObservingExpectationForObject:keyPath:handler:]
Methode, um sicherzustellen, dass meine NSOperation abgeschlossen ist, ist hier die code from my XCDYouTubeKit project:XCTest Ausnahme bei der Verwendung von keyValueObservingExpectationForObject: keyPath: handler:
- (void) testStartingOnBackgroundThread
{
XCDYouTubeVideoOperation *operation = [[XCDYouTubeVideoOperation alloc] initWithVideoIdentifier:nil languageIdentifier:nil];
[self keyValueObservingExpectationForObject:operation keyPath:@"isFinished" handler:^BOOL(id observedObject, NSDictionary *change)
{
XCTAssertNil([observedObject video]);
XCTAssertNotNil([observedObject error]);
return YES;
}];
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
XCTAssertFalse([NSThread isMainThread]);
[operation start];
});
[self waitForExpectationsWithTimeout:5 handler:nil];
}
Dieser Test immer passiert, wenn ich betreibe es lokal auf meinem Mac, aber manchmal ist es fails on Travis mit diesem Fehler:
failed: caught "NSRangeException", "Cannot remove an observer <_XCKVOExpectation 0x1001846c0> for the key path "isFinished" from <XCDYouTubeVideoOperation 0x1001b9510> because it is not registered as an observer."
Bin ich etwas falsch?
@ Cœur [Der allgemeine Konsens] (https://meta.stackoverflow.com/questions/274906/should-questions-that-violate-api-terms-of-service-be-flagged) ist, dass es nicht ist die Verantwortung von stackoverflow-Benutzern oder -Moderatoren, die ToS anderer Websites durchzusetzen. –