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

I am trying to figure out how FRIEND_TEST works in Google Tests. http://code.google.com/p/googletest/wiki/AdvancedGuide#Private_Class_Members

I am looking at the following item, trying to implement it in my code:

// foo.h
#include "gtest/gtest_prod.h"

// Defines FRIEND_TEST.
class Foo {
  ...
 private:
  FRIEND_TEST(FooTest, BarReturnsZeroOnNull);
  int Bar(void* x);
};

// foo_test.cc
...
TEST(FooTest, BarReturnsZeroOnNull) {
  Foo foo;
  EXPECT_EQ(0, foo.Bar(NULL));
  // Uses Foo's private member Bar().
}

In the code above, the piece that I can't see, is that foo_test.cc must include foo.h, in order to have access to Foo and Bar(). [Perhaps it works differently for Google ? in my code, I must include it]

That will result in circular dependency...

Am I missing something ?

Edit: code sample: (re-edited after fixing - solution being changing test file from *.h to *.cpp):

Project ppppp - file myfile.h:

class INeedToBeTested
{
public:
  extern friend class blah_WantToTestThis_Test;
  INeedToBeTested();
  INeedToBeTested(INeedToBeTested* item);
  INeedToBeTested(OtherClass* thing, const char* filename);
  ~INeedToBeTested();
  bool Testable();
  std::string MoreTestable();

private:
  int WantToTestThis();
};

Project ppppp_gtest, file myFile_gtest.cpp:

#pragma once
#include "gtest/gtest.h"
#include "myfile.h" //property sheet adds include locations
#include "otherclass.h"

  class blah: public ::testing::Test{
  // declarations, SetUp, TearDown to initialize otherclass thing, std::string filename
  }
  TEST_F(blah, WantToTestThis)
      {
        INeedToBeTested item(thing, filename.c_str());
        item.WantToTestThis();   // inaccessible when this content is in header file
      }

During my efforts to get this to work, I also experimented with creating a wrapper class (this also works only if in a cpp, not in header); while it requires changing private to protected, it doesn't require additional declarations inside tested code which each new test:

// option: create wrapper (change private to protected first) 
  class INeedToBeTestedWrapper:public INeedToBeTested 
      {
      public:
         INeedToBeTestedWrapper(OtherClass* thing, std::string filename):
            INeedToBeTested(OtherClass* thing, filename.c_str());
      public:
         using INeedToBeTested::WantToTestThis;
      };

      TEST_F(blah, WantToTestThis)
      {
        INeedToBeTestedWrapper item(thing, filename);
        item.WantToTestThis();   
      }
share|improve this question

1 Answer

up vote 2 down vote accepted

There shouldn't be a problem here.

FRIEND_TEST in this case simply defines

friend class FooTest_BarReturnsZeroOnNull_Test;

which is the class ultimately defined by using the TEST macro. There's no need to link gtest or any of your test code to the foo library/exe. You only need to #include "gtest/gtest_prod.h" as you have done.

In foo_test.cc, you need to #include "foo.h" since it's using an actual instance of a Foo object. You also need to link your foo library to the test executable, or if foo isn't a library, you need to compile in the foo sources.

So in summary, foo doesn't need any test code with the exception of the tiny gtest_prod.h header, but the test needs linked to the foo code.

share|improve this answer
I was unable to make it work - I tried not including gtest/gtest_prod.h, but write instead the actual "friend class..." (it also seems more clear, and it gave me a better understanding of how gtest actually works). The problem may be a namespace issue - the fact that the production code is in an anonymous namespace, in a separate project - and if I actually include the test namespace (see codeproject.com/Articles/484817/…), I get an error, about the test namespace being invalid. – Thalia Nov 1 '12 at 17:39
@Mihaela Do you mean the class declaration in foo.h is in an anonymous namespace? If you add examples of your namespace layouts to the question, it would probably help a wee bit. As the codeproject article points out, the FRIEND_TEST macro doesn't handle namespaces well, but if you're happy to abandon the macro and just declare the test class a friend normally, then the namespace issues should be easier to handle. – Fraser Nov 1 '12 at 18:57
I have added code... with 2 implementation versions. One that adds the friend class, another where I even abandoned that concept, changed visibility of 'private' to 'protected' and tried to create a wrapper class, as the FAQ in the Google Test documentation suggests. (of course, if I add the friend with 'extern' I remove the "namespace - but I got link errors) – Thalia Nov 1 '12 at 20:42
@Mihaela Yes - you need to move the test fixture (the TEST_F(blah, WantToTestThis) bit) outside of the anonymous namespace. It doesn't exist outside of the scope of that compilation unit, so it can't access INeedToBeTested's private members since INeedToBeTested can't "see" it to make it a friend. The test class can stay in the anonymous namespace if you wish. Then if you add friend class blah_WantToTestThis_Test; to INeedToBeTested, you're good to go. – Fraser Nov 1 '12 at 22:36
1  
@Mihaela Nearly there :-) Delete the TEST_F declaration from the header myFile_gtest.h Google's TEST_F macro is actually declaring the class blah_WantToTestThis_Test, so even though you don't implement any of the TEST_F code in the header, you're declaring the class twice. (You could probably delete the whole header file actually, unless some other cpp file(s) need access to your class blah.) Then move the TEST_F body outside of the anonymous namespace in myFile_gtest.cpp so it can be befriended by INeedToBeTested. – Fraser Nov 1 '12 at 23:25
show 5 more comments

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.