(bool thing, CancellationToken cancellationToken)
| 236 | } |
| 237 | |
| 238 | public Task<bool> testBool(bool thing, CancellationToken cancellationToken) |
| 239 | { |
| 240 | logger.Invoke("testBool({0})", thing); |
| 241 | return Task.FromResult(thing); |
| 242 | } |
| 243 | |
| 244 | public Task<sbyte> testByte(sbyte thing, CancellationToken cancellationToken) |
| 245 | { |
no test coverage detected