Skip to content

Instantly share code, notes, and snippets.

@icoxfog417
Created August 14, 2014 02:57
Show Gist options
  • Save icoxfog417/568b8415025aaaafc2e5 to your computer and use it in GitHub Desktop.
Save icoxfog417/568b8415025aaaafc2e5 to your computer and use it in GitHub Desktop.
python decorator to print mothod name
def print_title(test_case):
def wrapper(*args, **kwargs):
print("@" + test_case.__name__ + "-------------------------------------------")
return test_case(*args, **kwargs)
return wrapper
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment