File tree 1 file changed +6
-0
lines changed
1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -136,31 +136,37 @@ class TestClass
136
136
137
137
// Functions for managing the function or member function test.
138
138
public:
139
+ // / Get the class name for the test, which can also be an empty string.
139
140
TestString const & GetClassName () const throw()
140
141
{
141
142
return m_class_name;
142
143
}
143
144
145
+ // / Set the class name for the test, which can also be an empty string.
144
146
void SetClassName (TestString const & class_name)
145
147
{
146
148
m_class_name = class_name;
147
149
}
148
150
151
+ // / Get the function or member function name for the test, which can also be empty.
149
152
TestString const & GetFunctionName () const throw()
150
153
{
151
154
return m_function_name;
152
155
}
153
156
157
+ // / Set the function or member function name for the test, which can also be empty.
154
158
void SetFunctionName (TestString const & function_name)
155
159
{
156
160
m_function_name = function_name;
157
161
}
158
162
163
+ // / Get the function or member function arguments for the test, which can also be empty.
159
164
TestString const & GetArgs () const throw()
160
165
{
161
166
return m_args;
162
167
}
163
168
169
+ // / Set the function or member function arguments for the test, which can also be empty.
164
170
void SetArgs (TestString const & args)
165
171
{
166
172
if (args != " NA" )
You can’t perform that action at this time.
0 commit comments