Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
1answer
599 views

Why can't code inside unit tests find bundle resources?

Some code I am unit testing needs to load a resource file. It contains the following line: NSString *path = [[NSBundle mainBundle] pathForResource:@"foo" ofType:@"txt"]; In the app it runs just ...
2
votes
0answers
43 views

Logic tests hang in -[MKTileCache init] () after linking AssetsLibrary.framework

My iOS app has a bunch of simple logic tests, which we run in a continuous integration using buildot. Recently I started linking the AssetsLibrary framework to both the main app, and to the logic ...
1
vote
0answers
25 views

How to test code that depends on UIUserInterfaceIdiom (ios)

I have some Objective-C [i-os] code that I would like to run unit tests over using XCode. It accesses different metadata depending on the type of device, using: [[UIDevice currentDevice] ...
1
vote
0answers
175 views

XCode, Unit Tests and Implementation Files

I finally decided to add some unit tests to my simple iPhone application. There is one thing that is kind of annoying and that is to have to include all dependencies in the test bundle. But, maybe ...
1
vote
1answer
220 views

Unit tests no longer working after XCode upgrade from 3.2.3 to 3.2.4

I have just updated my XCode to 3.2.4 and it turns out my unit tests are no longer working. I have configured a target and executable following the instructions from Scott Densmore so that I'm able to ...
1
vote
4answers
288 views

XCode missing inline test results

Everywhere there are pretty pictures of failing tests shown inline in the code editor, like in Peepcodes Objective-C for Rubyist screencast and in apples own technical documentation: When I build ...
0
votes
0answers
67 views

Unit Testing in Objective C -> how to copy sqlite database

I have a bit of trouble getting my test-suite up and running. basically I added a new target to my application like so: Unit Testing Applications As I want to test against my DA-classes and ...
0
votes
1answer
77 views

Nib files cannot be loaded by name from main bundle

It seems as though my nib files are included in my test target, they don't exist in the main bundle, so my app crashes on me when I am loding a nib by its name from the main bundle. I either need to ...
0
votes
2answers
216 views

How can iPhone Nibs be Unit Tested using Logical Tests?

Unit Testing View Controllers seems to be very important part of iPhone Development (see this Article). This, however, requires initializing the Controllers from a Nib, which I found impossible to do ...
0
votes
1answer
510 views

How do I link my executable to my test bundle when debugging test using otest?

I'm using kind of a hybrid of Chris Hanson's excellent Xcode unit testing guide. My program is a (command-line) application (which precludes using the executable itself to run the tests), but I need ...