Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
4answers
3k views

How to unit test asynchronous APIs?

I have installed Google Toolbox for Mac (http://code.google.com/p/google-toolbox-for-mac/) into Xcode and followed the instructions to set up unit testing found here ...
5
votes
2answers
555 views

iPhone: How can I use gcov?

I'm trying to use gcov on iPhone Project and followed Apple's instruction described here, but it doesn't work. When I build and go configured project, .gcda file is created for each object file. But ...
3
votes
2answers
337 views

google-toolbox-for-mac iphone unit test: 1073 Abort trap mkdir “$CFFIXED_USER_HOME” Command /bin/sh failed with exit code 134

I'm trying to setup the iPhone Unit Testing framework from google-toolbox-for-mac. I've got a simple unit test created and try and build it and receive the following error. A coworker of mine can ...
2
votes
0answers
255 views

integrating google's GTM iphone testing framework with XCode 4

We have decided that GTM seems to be better than the integrated XCode 4 octest framework, but is there anyway to link a GTM target to the run pulldown button so we can press 'Test' (shortcut CMD U) ...
1
vote
0answers
192 views

Using the Google Toolbox for Mac OAuth for Google App Engine

I am trying to integrate an iOS application with Google App Engine using OAuth. I found that GTM has an OAuth Controller -- http://code.google.com/p/gtm-oauth/ Can it be used to connect to Google ...
1
vote
1answer
229 views

Google Toolbox For Mac : testing [NSURLConnection sendSynchronousRequest:…]

I'm wondering how to test a synchronous request to assert the behavior of an API client depending on the server response. As it's a good practice to be independent of the server (so the test run fast ...
1
vote
1answer
246 views

Checking IBOutlet connection with OCMock

I want to verify with unit tests that all the IBoutlets in my controller class are correctly hooked up in the NIB file. I'd like to do this with OCMock - even though I know I could simply assert the ...
0
votes
1answer
26 views

GTM OAuth Twitter update error

I'm having a posting issue with the gtm oauth toolbox. I've been trying to send a tweet to twitter but I keep getting authorization errors. Right now I'm receiving the following error with the code ...
0
votes
1answer
109 views

Unzippping NSData with GTMNSData+zlib

I download from Google Docs zipped NSData. The first bytes are PK. I've read to unzip them I could use GTMNSData+zlib category. Compiling my project, I obtain some errors, for example: "_inflate", ...
0
votes
0answers
267 views

RootViewController Unit Testing: delegate property KVC error

I'm trying to write Unit Tests for my RootViewController in an iPad app based on the Split View application template. I've instantiated a core data stack for testing and gotten that piece to work ...
0
votes
2answers
312 views

iPhone : Waiting for a webview to load in automated test

I'm using Google Toolbox for Mac to test my application. The test I'm working on checks that when a shake event, a dedicated controller sends a message to a webview, and that the HTML page responds ...
0
votes
1answer
216 views

Unrecognized selector on calling Google Toolbox for Mac NSString category method in iOS

I'm building a static library for use in an iOS project, and I want to decode XML entities returned from a web service. I've grabbed Google Toolbox for Mac and added the following files to my project: ...
0
votes
1answer
114 views

Unit Testing Mac apps with Google Toolbox for MAC (GTM)

Is GTM only useful for iPhone apps or could I use it for both iPhone and Mac apps? Thanks in advance.
0
votes
2answers
596 views

OCMock: Why do I get an unrecognized selector exception when attempting to call a UIWebView mock?

Edit: This was all caused by a typo in my Other Link Flags setting. See my answer below for more information. I'm attempting to mock a UIWebView so that I can verify that methods on it are called ...
0
votes
2answers
107 views

Error compiling for unit test using google toolbox for mac

Hi my application runs fine but when I try to run the unit tests I am getting this error... 2010-10-19 00:27:49.919 AssignmentUnitTest[27988:903] *** Terminating app due to uncaught exception ...
0
votes
2answers
251 views

Does a Category applied to NSString also apply to NSCFString via the “toll-free bridge”?

We're integrating a library into an iPhone app which appears to use the google toolbox for iPhone internally. The google toolbox adds a method gtm_stringBySanitizingAndEscapingForXML to NSString. The ...
0
votes
2answers
490 views

Match first word of a phrase in a String

I am using the GTMRegex class from the Google toolbox for mac (in a Cocoa / Objective-C) app: http://code.google.com/p/google-toolbox-for-mac/ I need to do a match and replace of a 3 word phrase in ...
0
votes
1answer
207 views

Log file rollover when logging to file using Google toolbox for Mac

I'm using Google toolbox for Mac's GTMLogger to do logging to file in the app I'm working on. I'm trying to decide how to do log file rollover when the file gets large enough. Ideally I would like ...