| 148 | } |
| 149 | |
| 150 | inline std::string TestCaseFactory::name() const |
| 151 | { |
| 152 | std::string name = _suite_name + "/" + _test_name; |
| 153 | |
| 154 | if (!_data_description.empty()) |
| 155 | { |
| 156 | name += "@" + _data_description; |
| 157 | } |
| 158 | |
| 159 | return name; |
| 160 | } |
| 161 | |
| 162 | inline DatasetMode TestCaseFactory::mode() const |
| 163 | { |
no test coverage detected