Bug 1476: TestCase::GetName () should not be private

This commit is contained in:
Mitch Watrous
2012-07-24 17:11:01 -07:00
parent 92a5cd99f5
commit b1f7508525

View File

@@ -876,6 +876,11 @@ protected:
*/
bool IsStatusSuccess (void) const;
/**
* \return name of this test
*/
std::string GetName (void) const;
// The methods below are used only by test macros and should not
// be used by normal users.
void ReportTestFailure (std::string cond, std::string actual,
@@ -916,7 +921,6 @@ private:
// methods called by TestRunnerImpl
void Run (TestRunnerImpl *runner);
std::string GetName (void) const;
bool IsFailed (void) const;