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 never released …
4
votes
1answer
142 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 appropriate Framework …
0
votes
2answers
40 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 to run my OCUnit …
4
votes
1answer
209 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 into my app, and …
0
votes
1answer
75 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 …
0
votes
2answers
779 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 is going to get the …
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 like to only run …
1
vote
1answer
30 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?
3
votes
4answers
289 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 more testing code than …
4
votes
1answer
240 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 Developer page - Automated …
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, MallocCheckHeapEach, for example).
…
1
vote
2answers
202 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 well as any NSLog() …
0
votes
1answer
118 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 that. So, the last …
2
votes
1answer
166 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];
[obj …
1
vote
2answers
327 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 runs the tests as …
