(sbyte thing, CancellationToken cancellationToken)
| 242 | } |
| 243 | |
| 244 | public Task<sbyte> testByte(sbyte thing, CancellationToken cancellationToken) |
| 245 | { |
| 246 | logger.Invoke("testByte({0})", thing); |
| 247 | return Task.FromResult(thing); |
| 248 | } |
| 249 | |
| 250 | public Task<int> testI32(int thing, CancellationToken cancellationToken) |
| 251 | { |
no test coverage detected