如何让我正在测试的类的朋友VS TEST_CLASS(SomeTestClassName)? 我是c ++的新手,在网上找不到任何信息。 如果很简单,请添加
friend class SomeTestClassName;
到被测试的类的标题 - 这不起作用。
添加了示例:
#include "..\CoreTests\ChallengeManagerTests.cpp" //Circular reference? But forward declaration don't works
class ChallengeManager
{
private:
void PrivateMethod();
public:
void PublicMethod();
friend class CoreTests::ChallengeManagerTests; // Compiler can't find ChallengeManagerTests in CoreTests namespace. Forward declaration give class redefinition error.
}
//ChallengeManagerTests:
#include "stdafx.h"
#include "CppUnitTest.h"
#include "..\Core\ChallengeManager.h"
using namespace Microsoft::VisualStudio::CppUnitTestFramework;
using namespace Brans;
namespace CoreTests
{
TEST_CLASS(ChallengeManagerTests)
{
public:
TEST_METHOD(RandomInputs)
{
Brans::ChallengeManager cm;
cm. // here i got is not accessible error for private members
}
};
}
答案 0 :(得分:1)
从您删除的上一个问题判断,您的testclass名称是在命名空间内定义的,因此您需要在您的朋友声明中提供相同的命名空间。
答案 1 :(得分:0)
在类class ChallengeManager定义之前,只需添加测试类的前向声明,如下所示:
class CoreTests::ChallengeManagerTests;