Home | Trees | Index | Help |
---|
|
object --+ | extension.Extension --+ | result_reader.ResultReader --+ | FileResultReader
A 'FileResultReader' gets its input from a file.
A 'FileResultReader' is an abstract base class for other result reader classes that read results from a single file. The file from which results should be read can be specified using either the 'filename' argument or the 'file' argument. The latter is for use by QMTest internally.
|
|||
InvalidFile | An 'InvalidFile' exception indicates an incorrect file format. | ||
Inherited from |
|
|||
__init__(self,
arguments=None,
**args)
Construct a new 'FileResultReader'. |
|||
Inherited from Inherited from Inherited from |
|
|||
_argument_dictionary | A map from argument names to 'Field' instances. | ||
_argument_list | A list of all the 'Field's in this class. | ||
_is_binary_file | If true, results are stored in a binary format. | ||
arguments | A list of the arguments to the extension class. | ||
file | |||
filename | |||
Inherited from Inherited from Inherited from |
|
Construct a new 'FileResultReader'. 'arguments' -- As for 'ResultReader'. If the file provided is not in the input format expected by this result reader, the derived class '__init__' function must raise an 'InvalidStream' exception.
|
|
_argument_dictionaryA map from argument names to 'Field' instances. A map from the names of arguments for this class to the corresponding 'Field'.
|
_argument_listA list of all the 'Field's in this class. This list combines the complete list of 'arguments'. 'Field's appear in the order reached by a pre-order breadth-first traversal of the hierarchy, starting from the most derived class.
|
_is_binary_fileIf true, results are stored in a binary format. This flag can be overridden by derived classes.
|
argumentsA list of the arguments to the extension class. Each element of this list should be an instance of 'Field'. The 'Field' instance describes the argument. Derived classes may redefine this class variable. However, derived classes should not explicitly include the arguments from base classes; QMTest will automatically combine all the arguments found throughout the class hierarchy.
|
file
|
filename
|
Home | Trees | Index | Help |
---|
Generated by Epydoc 3.0alpha2 on Fri Sep 28 00:57:33 2007 | http://epydoc.sf.net |