| 379 | } |
| 380 | |
| 381 | std::string GetConnectionDescription(const Connection& connection) |
| 382 | { |
| 383 | std::stringstream ss; |
| 384 | ss << " connection [" << connection.GetGuid() << "] from entity ["; |
| 385 | ss << connection.GetHead()->GetGuid() << "] to entity [" << connection.GetTail()->GetGuid() << "]"; |
| 386 | return ss.str(); |
| 387 | } |
| 388 | |
| 389 | std::string GetExecutionDescription(Entity* execution) |
| 390 | { |
no test coverage detected