| 194 | } |
| 195 | |
| 196 | std::string |
| 197 | TestConfig::readerTopicName( int index) const |
| 198 | { |
| 199 | if( (index < 0) || (unsigned(index) >= this->readerTopicName_.size())) { |
| 200 | throw OutOfRangeException(); |
| 201 | |
| 202 | } else { |
| 203 | return this->readerTopicName_[index]; |
| 204 | } |
| 205 | } |
| 206 | |
| 207 | std::string& |
| 208 | TestConfig::writerTopicName( int index) |
no test coverage detected