(int thing, CancellationToken cancellationToken)
| 248 | } |
| 249 | |
| 250 | public Task<int> testI32(int thing, CancellationToken cancellationToken) |
| 251 | { |
| 252 | logger.Invoke("testI32({0})", thing); |
| 253 | return Task.FromResult(thing); |
| 254 | } |
| 255 | |
| 256 | public Task<long> testI64(long thing, CancellationToken cancellationToken) |
| 257 | { |
no test coverage detected