(double thing, CancellationToken cancellationToken)
| 260 | } |
| 261 | |
| 262 | public Task<double> testDouble(double thing, CancellationToken cancellationToken) |
| 263 | { |
| 264 | logger.Invoke("testDouble({0})", thing); |
| 265 | return Task.FromResult(thing); |
| 266 | } |
| 267 | |
| 268 | public Task<byte[]> testBinary(byte[]? thing, CancellationToken cancellationToken) |
| 269 | { |
no test coverage detected