Package flumotion :: Package common :: Module testsuite :: Class TestCase
[hide private]

Class TestCase

source code

twisted.trial.unittest.TestCase --+
                                  |
        extern.log.log.Loggable --+
                                  |
                                 TestCase

Instance Methods [hide private]
 
failUnlessFailure(self, deferred, *expectedFailures) source code
 
assertFailure(self, deferred, *expectedFailures) source code
 
__init__(self, methodName=' impossible-name ') source code
 
getSlow(self)
Return whether this test has been marked as slow.
source code
 
debug(self, *args, **kwargs)
Log a debug message.
source code

Inherited from extern.log.log.Loggable: doLog, error, info, log, logFunction, logObjectName, warning, warningFailure, writeMarker

Class Variables [hide private]
  supportedReactors = [selectreactor.SelectReactor]

Inherited from extern.log.log.Loggable: logCategory

Method Details [hide private]

getSlow(self)

source code 

Return whether this test has been marked as slow. Checks on the instance first, then the class, then the module, then packages. As soon as it finds something with a slow attribute, returns that. Returns False if it cannot find anything.

debug(self, *args, **kwargs)

source code 

Log a debug message. Used for debugging.

Overrides: extern.log.log.Loggable.debug
(inherited documentation)