From b1f750852508269ae5e03868798e910aabe7a908 Mon Sep 17 00:00:00 2001 From: Mitch Watrous Date: Tue, 24 Jul 2012 17:11:01 -0700 Subject: [PATCH] Bug 1476: TestCase::GetName () should not be private --- src/core/model/test.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/core/model/test.h b/src/core/model/test.h index 126e7654c..d909e43e3 100644 --- a/src/core/model/test.h +++ b/src/core/model/test.h @@ -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;