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

robotframework-2.7.7.atest.testdata.variables.PythonClass.py Maven / Gradle / Ivy

The newest version!
class PythonClass:
    python_string = 'hello'
    python_integer = None
    LIST__python_list = ['a', 'b', 'c']

    def __init__(self):
        self.python_integer = 42

    def python_method(self):
        pass

    @property
    def python_property(self):
        return 'value'




© 2015 - 2024 Weber Informatics LLC | Privacy Policy