trial.step 0/14(0%) line coverage

      
10
20
30
40
50
60
70
80
90
100
110
120
130
140
150
160
170
180
190
200
210
220
230
240
250
260
270
280
290
300
310
320
330
340
350
360
370
380
390
400
410
420
430
440
450
460
470
480
490
500
510
module trial.step; import trial.runner; import trial.interfaces; import std.datetime; import std.stdio; struct Step { static { string suite; string test; } @disable this(); private { StepResult step; } this(string name) { step = new StepResult; step.name = name; step.begin = Clock.currTime; step.end = Clock.currTime; if(LifeCycleListeners.instance is null) { writeln("Warning! Can not set steps if the LifeCycleListeners.instance is not set."); return; } LifeCycleListeners.instance.begin(suite, test, step); } ~this() { if(LifeCycleListeners.instance is null) { writeln("Warning! Can not set steps if the LifeCycleListeners.instance is not set."); return; } step.end = Clock.currTime; LifeCycleListeners.instance.end(suite, test, step); } }