FRIEND_TEST in Google Test - possible circular dependency?
- by Mihaela
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,…