0
votes
2answers
24 views
Does OCUnit allow application tests to be run on the iPhone Simulator?
Apple's "iPhone Development Guide" suggests on page 62 that "Because application tests run only on a device, you can also use these tests to perform hardware testing...".
I'd like …
3
votes
1answer
91 views
iPhone: Application Testing and Core Location
I'm trying to implement Application Tests as described here. So far, so good, but i fail to test, for instance, the location of the device using Core Location. I have added the app …
3
votes
1answer
156 views
Why doesn’t gcov report any lines being covered by my unit tests?
I am using Xcode 3.2 on 10.6, with the shipped version of gcov and default GCC compiler (both version 4.2.1). I have created a dependent Cocoa unit test bundle which is injected in …
0
votes
2answers
676 views
iPhone Unit Testing XCode
I've been following Apple's documentation on writing unit tests for the iPhone, and out of the box, the routine doesn't seem to work. I'm not sure I understand where the unit test …
0
votes
1answer
60 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 …
0
votes
2answers
50 views
How do I run a subset of OCUnit tests in XCode
I have a suite of unit tests that I use before checking in my project. However, very often it's the case that only one of them finds some regression in the code. In these cases I'd …
1
vote
1answer
25 views
Testing View Controllers --iPhone
My question is 2-fold. 1. Can I use OCUnit to test View Controllers. If so, how should I do it? If not, is there another Testing Kit I can use?
2
votes
4answers
268 views
Unit Testing private methods in Xcode
I'm trying out test driven development in a toy project. I can get the tests working for the public interface to my classes (although I'm still on the fence because I'm writing mor …
3
votes
1answer
208 views
Why do my OCUnit tests fail with “code 138”?
I'm currently trying to learn objective-c using XCode 3.1. I've been working on a small program and decided to add unit testing to it.
I followed the steps on the Apple Develope …
0
votes
2answers
189 views
How to run OCTest from command-line, not XCode
XCode 3.1.2 using built-in OCTest unit testing.
I'm getting a crash when unit tests run. I want to run w/ a few extra environment variables (MallocCheckHeapStart, MallocCheckHeap …
1
vote
2answers
179 views
OCUnit, NSLog, and XCode 3.1
I'd been using OCUnit (the default installation that comes with XCode) in XCode 3.0. I've been happy being able to run my tests and see the results in the Build Results window, as …
0
votes
1answer
102 views
Can’t build OCUnit in GNUstep/Win32 environment - objc/runtime.h not found
I'm trying to unit test objective-c classes built in the MinGW shell. Since OCUnit has been embraced by Apple for XCode, it seems that the developer, Sen:te, has now focused on th …
2
votes
1answer
150 views
OCUnit test for protocols/callbacks/delegate in Objective-C
Using OCUnit, is there a way to test delegate protocols?
I'm trying this, which doesn't work.
-(void) testSomeObjDelegate {
SomeObj obj = [[SomeObj alloc] initWithDelegate:self …
1
vote
2answers
304 views
iPhone Unit Tests Hang; Fail to Call -applicationDidFinishLaunching:
I have unit tests set up for my iPhone project built using the Google Toolkit for Mac framework on top of OCUnit. I have a dependent project called "Unit Tests" that builds and run …
4
votes
1answer
281 views
How do I trap OCUnit test pass/failure messages/events.
I'm trying to use xcodebuild and OCUnit with my Continuous Integration server (TeamCity).
JetBrains offers test observer implementations for boost::test and CppUnit that format …
