(name: string, time: number, args: any = null)
| 45 | } |
| 46 | |
| 47 | instant(name: string, time: number, args: any = null) { |
| 48 | return this.create('I', name, time, args); |
| 49 | } |
| 50 | |
| 51 | complete(name: string, time: number, duration: number, args: any = null) { |
| 52 | const res = this.create('X', name, time, args); |
no test coverage detected