Returns the text representation of the value parameter, or NULL if this is not a value-parameterized test.
| 13165 | // Returns the text representation of the value parameter, or NULL if this |
| 13166 | // is not a value-parameterized test. |
| 13167 | const char* value_param() const { |
| 13168 | if (value_param_.get() != nullptr) return value_param_->c_str(); |
| 13169 | return nullptr; |
| 13170 | } |
| 13171 | |
| 13172 | // Returns the file name where this test is defined. |
| 13173 | const char* file() const { return location_.file.c_str(); } |