0
votes
4answers
69 views
Should you still do memory management in a unit test? (OCUnit)
Hi!
Should I still bother with releasing objects in a unit test?
I noticed in Apple's "iPhoneUnitTests" sample project objects are [[object alloc] init] in the setup method but n …
4
votes
1answer
138 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 …
0
votes
2answers
37 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 …
4
votes
1answer
200 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 …
1
vote
1answer
28 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?
0
votes
2answers
64 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 …
0
votes
1answer
74 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 …
4
votes
1answer
237 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 …
3
votes
4answers
288 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 …
0
votes
2answers
763 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
2answers
206 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 …
2
votes
1answer
165 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
198 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
116 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 …
1
vote
2answers
321 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 …
