Why should we check starting_phase != null before calling raise_objection or drop_objection in sequence?
In reply to ranjithkumar d:
You should never raise or drop an objection in a sequence. The reason for this is that the objection mechanism can add a significant amount of overhead which can impact performance.
Instead, you should only raise and lower objections in your test’s run_phase().
In reply to cgales:
But why should we check starting_phase != null?