|
__init__(self)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature |
source code
|
|
|
|
|
get_target_filename(self,
path_to_mmp=None)
Filename given using TARGET in .mmp file is returned
If "c:path ommp" is a location where mmp file is stored
get_target_filename("c:path ommp") |
source code
|
|
|
get_libraries(self,
path_to_mmp=None)
Libraries listed in the MMP file are returned in a list
If "c:path ommp" is a location where mmp file is stored
get_libraries("c:path ommp") |
source code
|
|
|
get_harness(self,
path_to_mmp=None)
Returns harness of test component
If "c:path ommp" is a location where mmp file is stored
get_harness("c:path ommp") |
source code
|
|
|
get_dll_type(self,
path_to_mmp=None)
Returns type of test whether 'executable' or 'dependent' (dependent can be a stub or plugin)
If "c:path ommp" is a location where mmp file is stored
get_dll_type("c:path ommp") |
source code
|
|
|
read_information_from_mmp(self,
path_to_mmp=None,
flag=0)
Returns wanted information - user can define
the wanted information level by setting a flag
value following way:
0 - (targetfilename, filetype, libraries, harness)
1 - (targetfilename, filetype, libraries)
2 - (targetfilename, filetype)
3 - targetfilename
4 - filetype
5 - libraries
6 - harness (in case of test component)
7 - mmpfilename |
source code
|
|
Inherited from object :
__delattr__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__str__
|