(
thing: string,
callback: (err: any, result: string) => void,
)
| 266 | this.syncHandler.testOneway(sleepFor); |
| 267 | } |
| 268 | testString( |
| 269 | thing: string, |
| 270 | callback: (err: any, result: string) => void, |
| 271 | ): Q.IPromise<string> { |
| 272 | callback(null, thing); |
| 273 | return Q.resolve(); |
| 274 | } |
| 275 | testByte( |
| 276 | thing: number, |
| 277 | callback: (err: any, result: number) => void, |
nothing calls this directly
no test coverage detected