def exit(self): chk_true(self.fail_flag != "list_exit", "Failure in the test list exit") assert self.raise_flag != "list_exit", "Exception in the test list exit"
def enter(self): chk_true(self.fail_flag != "list_enter", "Failure in the test list enter") assert self.raise_flag != "list_enter", "Exception in the test list enter"
def set_up(self): chk_true(self.fail_flag != "list_setup", "Failure in the test list setup") assert self.raise_flag != "list_setup", "Exception in the test list setup"
def tear_down(self): chk_true(self.fail_flag != "list_teardown", "Failure in the test list tear down") assert (self.raise_flag != "list_teardown"), "Exception in the test list tear down"
def test(self): chk_true(self.fail_flag != "test_test", "Failure in the test test") assert self.raise_flag != "test_test", "Exception in the test test"