(string? thing, CancellationToken cancellationToken)
| 230 | } |
| 231 | |
| 232 | public Task<string> testString(string? thing, CancellationToken cancellationToken) |
| 233 | { |
| 234 | logger.Invoke("testString({0})", thing ?? "<null>"); |
| 235 | return Task.FromResult(thing ?? string.Empty); |
| 236 | } |
| 237 | |
| 238 | public Task<bool> testBool(bool thing, CancellationToken cancellationToken) |
| 239 | { |
no test coverage detected