|
__init__(self,
methodName=' runTest ' )
Create an instance of the class that will use the named test
method when executed. |
source code
|
|
|
setUp(self)
Hook method for setting up the test fixture before exercising
it. |
source code
|
|
|
tearDown(self)
Hook method for deconstructing the test fixture after testing
it. |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
debug(self)
Run the test without collecting errors in a TestResult |
source code
|
|
|
_exc_info(self)
Return a version of sys.exc_info() with the traceback frame
minimised; usually the top level of the traceback frame is not
needed. |
source code
|
|
|
fail(self,
msg=None)
Fail immediately, with the given message. |
source code
|
|
|
failIf(self,
expr,
msg=None)
Fail the test if the expression is true. |
source code
|
|
|
failUnless(self,
expr,
msg=None)
Fail the test unless the expression is true. |
source code
|
|
|
failUnlessRaises(self,
excClass,
callableObj,
*args,
**kwargs)
Fail unless an exception of class excClass is thrown by
callableObj when invoked with arguments args and keyword arguments
kwargs. |
source code
|
|
|
failUnlessEqual(self,
first,
second,
msg=None)
Fail if the two objects are unequal as determined by the '=='
operator. |
source code
|
|
|
failIfEqual(self,
first,
second,
msg=None)
Fail if the two objects are equal as determined by the '=='
operator. |
source code
|
|
|
failUnlessAlmostEqual(self,
first,
second,
places=7,
msg=None)
Fail if the two objects are unequal as determined by their
difference rounded to the given number of decimal places (default 7)
and comparing to zero. |
source code
|
|
|
failIfAlmostEqual(self,
first,
second,
places=7,
msg=None)
Fail if the two objects are equal as determined by their
difference rounded to the given number of decimal places (default 7)
and comparing to zero. |
source code
|
|
|
assertEquals(self,
first,
second,
msg=None)
Fail if the two objects are unequal as determined by the '=='
operator. |
source code
|
|
|
assertEqual(self,
first,
second,
msg=None)
Fail if the two objects are unequal as determined by the '=='
operator. |
source code
|
|
|
assertNotEquals(self,
first,
second,
msg=None)
Fail if the two objects are equal as determined by the '=='
operator. |
source code
|
|
|
assertNotEqual(self,
first,
second,
msg=None)
Fail if the two objects are equal as determined by the '=='
operator. |
source code
|
|
|
assertAlmostEquals(self,
first,
second,
places=7,
msg=None)
Fail if the two objects are unequal as determined by their
difference rounded to the given number of decimal places (default 7)
and comparing to zero. |
source code
|
|
|
assertAlmostEqual(self,
first,
second,
places=7,
msg=None)
Fail if the two objects are unequal as determined by their
difference rounded to the given number of decimal places (default 7)
and comparing to zero. |
source code
|
|
|
assertNotAlmostEquals(self,
first,
second,
places=7,
msg=None)
Fail if the two objects are equal as determined by their
difference rounded to the given number of decimal places (default 7)
and comparing to zero. |
source code
|
|
|
assertNotAlmostEqual(self,
first,
second,
places=7,
msg=None)
Fail if the two objects are equal as determined by their
difference rounded to the given number of decimal places (default 7)
and comparing to zero. |
source code
|
|
|
assertRaises(self,
excClass,
callableObj,
*args,
**kwargs)
Fail unless an exception of class excClass is thrown by
callableObj when invoked with arguments args and keyword arguments
kwargs. |
source code
|
|
|
assertTrue(self,
expr,
msg=None)
Fail the test unless the expression is true. |
source code
|
|
|
assert_(self,
expr,
msg=None)
Fail the test unless the expression is true. |
source code
|
|
|
assertFalse(self,
expr,
msg=None)
Fail the test if the expression is true. |
source code
|
|
Inherited from object :
__delattr__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__setattr__
|