| 216 | } |
| 217 | |
| 218 | std::string |
| 219 | TestConfig::writerTopicName( int index) const |
| 220 | { |
| 221 | if( (index < 0) || (unsigned(index) >= this->writerTopicName_.size())) { |
| 222 | throw OutOfRangeException(); |
| 223 | |
| 224 | } else { |
| 225 | return this->writerTopicName_[index]; |
| 226 | } |
| 227 | } |
| 228 | |
| 229 | long& |
| 230 | TestConfig::subscriberDomain( int index) |
no test coverage detected