(env)
| 284 | |
| 285 | |
| 286 | def showEnv(env): |
| 287 | print("-----------------------------") |
| 288 | print("Action: %s" % env.getAction()) |
| 289 | print("MessageId: %s" % env.getMessageId()) |
| 290 | print("InstanceId: %s" % env.getInstanceId()) |
| 291 | print("MessageNumber: %s" % env.getMessageNumber()) |
| 292 | print("Reply To: %s" % env.getReplyTo()) |
| 293 | print("To: %s" % env.getTo()) |
| 294 | print("RelatesTo: %s" % env.getRelatesTo()) |
| 295 | print("Relationship Type: %s" % env.getRelationshipType()) |
| 296 | print("Types: %s" % env.getTypes()) |
| 297 | print("Scopes: %s" % env.getScopes()) |
| 298 | print("EPR: %s" % env.getEPR()) |
| 299 | print("Metadata Version: %s" % env.getMetadataVersion()) |
| 300 | print("Probe Matches: %s" % env.getProbeResolveMatches()) |
| 301 | print("-----------------------------") |
| 302 | |
| 303 | |
| 304 |
nothing calls this directly
no test coverage detected