How to use the toolium.behave.environment.after_feature function in toolium

To help you get started, we’ve selected a few toolium examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github Telefonica / toolium-examples / ios_behave / environment.py View on Github external
def after_feature(context, feature):
    """Clean method that will be executed after each feature

    :param context: behave context
    :param feature: running feature
    """
    toolium_after_feature(context, feature)
github Telefonica / toolium-examples / android_behave / environment.py View on Github external
def after_feature(context, feature):
    """Clean method that will be executed after each feature

    :param context: behave context
    :param feature: running feature
    """
    toolium_after_feature(context, feature)
github Telefonica / toolium-examples / mobile_behave / environment.py View on Github external
def after_feature(context, feature):
    """Clean method that will be executed after each feature

    :param context: behave context
    :param feature: running feature
    """
    toolium_after_feature(context, feature)
github Telefonica / toolium-examples / web_behave / environment.py View on Github external
def after_feature(context, feature):
    """Clean method that will be executed after each feature

    :param context: behave context
    :param feature: running feature
    """
    toolium_after_feature(context, feature)