| 1349 | |
| 1350 | |
| 1351 | VolumeInfo TestCSIPlugin::createVolumeInfo( |
| 1352 | const Bytes& capacity, |
| 1353 | const string& name, |
| 1354 | const google::protobuf::Map<string, string> context) |
| 1355 | { |
| 1356 | const string volumeId = volumeIdPath ? getVolumePath(capacity, name) : name; |
| 1357 | |
| 1358 | return VolumeInfo{ |
| 1359 | capacity, |
| 1360 | volumeId, |
| 1361 | getVolumePath(capacity, name), |
| 1362 | context}; |
| 1363 | } |
| 1364 | |
| 1365 | |
| 1366 | Try<VolumeInfo, StatusError> TestCSIPlugin::createVolume( |
nothing calls this directly
no test coverage detected