import os.path from types import MethodType, FunctionType from ILRobotAPI import get_version ROBOT_VERSION = get_version() from resources.metadata_test_framework import * from resources.parameter_utils import * from resources.plan_generate import * from resources.profiling_utils import * from resources.test_framework import * from resources.TestResources import * from resources.XML_utils import * from resources.log_utils import * try: mod = __import__("version", globals()) __version__ = mod.version except: __version__ = "0.0.0" class foolib: """ This purpose of this class is to make it easy to utilize A-Team's TA framework. Those useful functions will be put into this library """ ROBOT_LIBRARY_SCOPE = 'GLOBAL' def __init__(self): self._keywords = self._scan_keywords() self.framework = metadata_test_framework()
Each keyword typically has its own documentation, describing input parameters which may be mandatory (Man.) and return values. The test library documentation. Mail reflector for technical discussion: [email protected] Product Owner Team for IL test automation project: Juha Puonti (CPO) (Esp), Qiu Jun (Hz) When reporting bugs or requesting new features, please use the ILMml Issue Track System: https://jira.inside.nsn.com/browse/ILTA ========================================== """ import os.path import sys from types import MethodType, FunctionType from ILRobotAPI import get_version ROBOT_VERSION = get_version() try: mod = __import__("version", globals()) __version__ = mod.version except: __version__ = "0.0.0" class ildmxmsg_subsystem_lib: ROBOT_LIBRARY_SCOPE = 'GLOBAL' def __init__(self): self._keywords = self._scan_keywords()