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

I would like to make unit tests for my c++ application.

What is the correct form to test private members of a class Make a friend class which will test the private members, use a derived class, or some other trick?

Which technique the testing APIs use?

Thank you!

share|improve this question
8  
With unit tests you are testing a behaviour of the interface. So you shouldn't care of the object's internal state – zerkms Jan 6 at 20:12
4  
A shame we can't downvote a comment. @BeniBela I hope you realize that your suggestion is extremely bad coding practice. Pretty funny though. – Steven Lu Jan 6 at 20:22
1  
No, what do you test except that the public functions behave the way they should? Any member objects surely have their own tests. – Bo Persson Jan 6 at 20:29
1  
@DanielSaad: through public methods. Unit tests are supposed to test behavior (or contract, if you will). Private method is just implementation detail that will likely change and is irrelevant to "outside world". If you feel private member needs to be tested, it's highly likely it's also worth making it public. This topic has been covered multiple times at SO, like for example here. – jimmy_keen Jan 6 at 20:30
1  
@StevenLu: But it is a great way to test private methods. Tests do not really need to follow the same coding practice as the rest of the program. – BeniBela Jan 6 at 20:46
show 7 more comments

3 Answers

up vote 4 down vote accepted

Typically, one only tests the public interface as discussed in the question's comments.

There are times however when it is helpful to test private or protected methods. For example, the implementation may have some non-trivial complexities that are hidden from users and that can be tested more precisely with access to non-public members. Often it's better to figure out a way to remove that complexity or figure out how to expose the relevant portions publicly, but not always.

One way to allow unit tests access to non-public members is via the friend construct.

share|improve this answer

I haven't found a golden solution myself, but you can use friend to test private members, if you know how the testing framework names it's methods. I use the following to test private members with Google test. While this works quite well, note that it's a hack, and I don't use it in production code.

In the header of the code I want to test (stylesheet.h), I have:

#ifndef TEST_FRIENDS
#define TEST_FRIENDS
#endif

class Stylesheet {
TEST_FRIENDS;
public:
    // ...
private:
    // ...
};

and in the test I have:

#include <gtest/gtest.h>

#define TEST_FRIENDS \
    friend class StylesheetTest_ParseSingleClause_Test; \
    friend class StylesheetTest_ParseMultipleClauses_Test;

#include "stylesheet.h"

TEST(StylesheetTest, ParseSingleClause) {
    // can use private members of class Stylesheet here.
}

You always add a new line to TEST_FRIENDS if you add a new test that accesses private members. The benefits of this technique are that it is fairly unobstrusive in the tested code, as you only add a few #defines, which have no effect when not testing. The downside is that it is a bit verbose in the tests.

Now one word as to why you would want to do this. Ideally of course, you have small classes with well-defined responsibilities, and the classes have easily testable interfaces. However, in practice that's not always easy. If you are writing a library, what is private and public is dictated by what you want the consumer of the library to be able to use (your public API), and not by what's in need of testing or not. You can have invariants that are very unlikely to change, and need to be tested, but are of no interest to the consumer of your API. Then, black-box-testing of the API is not enough. Also if you encounter bugs and write additional tests to prevent regressions, it can be neccessary to test private stuff.

share|improve this answer
that's brilliant! – kerim Jan 6 at 20:57

The desire to test private members is a design smell, generally indicating that there is a class trapped inside your class struggling to get out. All of the functionality of a class should be exercisable through its public methods; functionality that can't be accessed publicly doesn't actually exist.

There are a couple of approaches to realizing that you need to test that your private methods do what they say on the tin. Friend classes are the worst of these; they tie the test to the implementation of the class under test in a way that is prima facie fragile. Somewhat better is dependency injection: Making the private methods' dependencies class attributes that the test can supply mocked-up versions of so as to allow the testing of private methods through the public interface. Best is to extract a class that encapsulates the behavior your private methods have as its public interface, and then test the new class as you normally would.

For more details, consult Clean Code.

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.