()
| 286 | } |
| 287 | |
| 288 | public String getFeatures() { |
| 289 | return ScriptState.get().getScriptFeatures(); |
| 290 | } |
| 291 | |
| 292 | public long getDuration() { |
| 293 | return (startTime > 0 && endTime > 0) ? (endTime - startTime) : -1; |
nothing calls this directly
no test coverage detected