All Downloads are FREE. Search and download functionalities are using the official Maven repository.

robotframework-2.7.7.atest.testresources.testlibs.libswithargs.py Maven / Gradle / Ivy

The newest version!
class Mandatory:

    def __init__(self, mandatory1, mandatory2):
        self.mandatory1 = mandatory1
        self.mandatory2 = mandatory2

    def get_args(self):
        return self.mandatory1, self.mandatory2


class Defaults(object):

    def __init__(self, mandatory, default1='value', default2=None):
        self.mandatory = mandatory
        self.default1 = default1
        self.default2 = default2

    def get_args(self):
        return self.mandatory, self.default1, self.default2


class Varargs(Mandatory):

    def __init__(self, mandatory, *varargs):
        Mandatory.__init__(self, mandatory, ' '.join(str(a) for a in varargs))


class Mixed(Defaults):

    def __init__(self, mandatory, default=42, *extra):
        Defaults.__init__(self, mandatory, default, 
                          ' '.join(str(a) for a in extra))




© 2015 - 2024 Weber Informatics LLC | Privacy Policy