Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 there is in the methods being tested).

I tend to use a lot of private methods becuase I like to keep the public interfaces clean; however, I'd still like to use tests on these methods.

Since Cocoa is a dynamic language, I can still call these private methods, but i get warnings in my tests that my class may not respond to these methods (although it clearly does). Since I like to compile with no warnings here are my questions:

  1. How do i turn off these warnings in Xcode?
  2. Is there something else I could do to turn off these warnings?
  3. Am I doing something wrong in trying 'white box' testing?
share|improve this question
So far I have not exposed my private methods in the header file. Why should I, I find it more elegant to have only public methods in the header. However it seems I have to change this in objective-c. – Nils Jan 10 '12 at 13:01
1  
@Nils You don't have private methods in a header file. Once there, they are public methods. – Abizern Jan 10 '12 at 13:35
Yes @Abizern so far I followed the advice of Peter Hosey below. – Nils Jan 10 '12 at 13:43

5 Answers

up vote 39 down vote accepted

How do i turn off these warnings in Xcode?

Don't.

Is there something else I could do to turn off these warnings?

Don't.

Am I doing something wrong in trying 'white box' testing?

No.

The solution is to move your private methods to a category in its own header. Import this header into both the real class and test-case class implementation files.

share|improve this answer
+1 — Great suggestion! For a little further detail, check out this question/answer: stackoverflow.com/questions/1020070/#1020330 The private header containing the category with private methods can be named MyClass_Private.h, for example. – Quinn Taylor Jul 8 '09 at 16:36
Thanks for this answer. I'm still not sure about it, but I must admit that there is a 'fun' element of writing a test and then making it pass. – Abizern Jul 9 '09 at 10:58

Remember that there's actually no such thing as "private methods" in Objective-C, and it's not just because it's a dynamic language. By design, Objective-C has visibility modifiers for ivars, but not for methods — it's not by accident that you can call any method you like.

@Peter's suggestion is a great one. To complement his answer, an alternative I've used (when I don't want/need a header just for private methods) is to declare a category in the unit test file itself. (I use @interface MyClass (Test) as the name.) This is a great way to add methods that would be unnecessary bloat in the release code, such as for accessing ivars that the class under test has access to. (This is obviously less of an issue when properties are used.)

I've found this approach makes it easy to expose and verify internal state, as well as adding test-only methods. For example, in this unit test file, I wrote an -isValid method for verifying correctness of a binary heap. In production, this method would be a waste of space, since I assume a heap is valid — I only care about it when testing for unit test regressions if I modify the code.

share|improve this answer
3  
Great suggestion! I like this idea better, keeps the exposure of the methods in context. – Bach Feb 3 '11 at 23:54
Wow, Peter Hosey should fix his answer to refer to yours. Great work, trying this now +1 – Yar Oct 15 '12 at 0:10

Looks like another question has the answer: http://stackoverflow.com/questions/194666/is-there-a-way-to-suppress-warnings-in-xcode

share|improve this answer
1  
That has part of the answer, but the best (or at least a more complete) solution for a particular case is probably related to either Peter's answer or my answer. – Quinn Taylor Jul 8 '09 at 17:15

While having a private header or defining your own category are probably more correct solutions there is also another very simple solution: cast the object to (id) before calling the method.

share|improve this answer

If you don't want to distribute your private method implementations across multiple source files, a refinement to the Category solution is to define an Extension (essentially an anonymous Category - refer to Apple's documentation) in a header file that's imported by both your existing class' implementation and the relevant unit test source files.

Using an Extension allows the compiler to warn you if the implementation of the private method is not present in the main @implementation block. This link illustrates it nicely.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.