| 160 | } |
| 161 | |
| 162 | std::string |
| 163 | TestConfig::infoRepoIor( int index) const |
| 164 | { |
| 165 | if( (index < 0) || (unsigned(index) >= this->infoRepoIor_.size())) { |
| 166 | throw OutOfRangeException(); |
| 167 | |
| 168 | } else { |
| 169 | return this->infoRepoIor_[index]; |
| 170 | } |
| 171 | } |
| 172 | |
| 173 | ACE_TString& |
| 174 | TestConfig::transportAddressName() |
no test coverage detected