()
| 211 | } |
| 212 | |
| 213 | private static Map<String, String> loadOsInfo() { |
| 214 | return Map.of( |
| 215 | "arch", System.getProperty("os.arch"), |
| 216 | "name", System.getProperty("os.name"), |
| 217 | "version", System.getProperty("os.version")); |
| 218 | } |
| 219 | |
| 220 | private SessionId sessionIdFrom(Map<String, String> params) { |
| 221 | return new SessionId(params.get("sessionId")); |
no test coverage detected