def confirm(self, msg, *args, **kwargs): """ Can be used to explain a criteria to VERIFY. Helpful in reverse engineering manual test case from integration test case """ log.warn("\nVERIFY: " + msg, *args, **kwargs)
def step(self, msg, *args, **kwargs): """ Can be used to explain a test case STEP. Helpful in reverse engineering manual test case from integration test case """ log.warn("\nSTEP: " + msg, *args, **kwargs)