Tagged Questions

4
votes
1answer
149 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 …
4
votes
1answer
216 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 …
4
votes
1answer
247 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 …
4
votes
1answer
294 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 test output in a way …
3
votes
4answers
294 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 …
2
votes
1answer
168 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
1answer
32 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?
1
vote
2answers
209 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() …
1
vote
2answers
335 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 …
0
votes
4answers
73 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 …
0
votes
2answers
45 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 …
0
votes
2answers
67 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 …
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
819 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
210 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 2 next
15 30 50 per page