Home | Trees | Indices | 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 |
|
|||
|
|||
Inherited from Inherited from Inherited from |
|
|||
arguments =
A list of the arguments to the extension class. |
|||
_is_binary_file = 0 If true, results are stored in a binary format. |
|||
_argument_dictionary =
A map from argument names to 'Field' instances. |
|||
_argument_list =
A list of all the 'Field's in this class. |
|||
file = None hash(x) |
|||
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.
|
|
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.
|
_is_binary_fileIf true, results are stored in a binary format. This flag can be overridden by derived classes.
|
_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.
|
Home | Trees | Indices | Help |
---|
Generated by Epydoc 3.0.1 on Fri Dec 23 12:30:41 2011 | http://epydoc.sourceforge.net |