(url: string, httpMethod: HttpMethod)
| 153 | } |
| 154 | |
| 155 | newHttpMetric(url: string, httpMethod: HttpMethod): HttpMetric { |
| 156 | return HttpMetric.fromUrlMethod(url, httpMethod); |
| 157 | } |
| 158 | newTrace(identifier: string): Trace { |
| 159 | return Trace.fromNative(this.native.traceWithName(identifier)); |
| 160 | } |
nothing calls this directly
no test coverage detected