Package FuzzManager :: Package FTB :: Package Signatures :: Module Symptom :: Class TestcaseSymptom
[hide private]
[frames] | no frames]

Class TestcaseSymptom

source code


Nested Classes [hide private]

Inherited from Symptom: __metaclass__

Instance Methods [hide private]
 
__init__(self, obj)
Private constructor, called by Symptom.fromJSONObject.
source code
bool
matches(self, crashInfo)
Check if the symptom matches the given crash information
source code

Inherited from Symptom: __str__

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __subclasshook__

Static Methods [hide private]

Inherited from Symptom: fromJSONObject

Class Variables [hide private]
  __abstractmethods__ = frozenset([])
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, obj)
(Constructor)

source code 

Private constructor, called by Symptom.fromJSONObject. Do not use directly.

Overrides: object.__init__

matches(self, crashInfo)

source code 

Check if the symptom matches the given crash information

Parameters:
  • crashInfo (CrashInfo) - The crash information to check against
Returns: bool
True if the symptom matches, False otherwise
Overrides: Symptom.matches