unittest
index
/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/unittest/__init__.py
Module Docs

Python unit testing framework, based on Erich Gamma's JUnit and Kent Beck's
Smalltalk testing framework.
 
This module contains the core framework classes that form the basis of
specific test cases and suites (TestCaseTestSuite etc.), and also a
text-based utility class for running the tests and reporting the results
 (TextTestRunner).
 
Simple usage:
 
    import unittest
 
    class IntegerArithmeticTestCase(unittest.TestCase):
        def testAdd(self):  ## test method names begin 'test*'
            self.assertEqual((1 + 2), 3)
            self.assertEqual(0 + 1, 1)
        def testMultiply(self):
            self.assertEqual((0 * 10), 0)
            self.assertEqual((5 * 8), 40)
 
    if __name__ == '__main__':
        unittest.main()
 
Further information is available in the bundled documentation, and from
 
  http://docs.python.org/library/unittest.html
 
Copyright (c) 1999-2003 Steve Purcell
Copyright (c) 2003-2010 Python Software Foundation
This module is free software, and you may redistribute it and/or modify
it under the same terms as Python itself, so long as this copyright message
and disclaimer are retained in their original form.
 
IN NO EVENT SHALL THE AUTHOR BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT,
SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OF
THIS CODE, EVEN IF THE AUTHOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
DAMAGE.
 
THE AUTHOR SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
PARTICULAR PURPOSE.  THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS,
AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.

 
Package Contents
       
__main__
case
loader
main
result
runner
signals
suite
test (package)
util

 
Classes
       
__builtin__.object
unittest.case.TestCase
unittest.case.FunctionTestCase
unittest.loader.TestLoader
unittest.main.TestProgram
unittest.result.TestResult
unittest.runner.TextTestResult
unittest.runner.TextTestRunner
exceptions.Exception(exceptions.BaseException)
unittest.case.SkipTest
unittest.suite.BaseTestSuite(__builtin__.object)
unittest.suite.TestSuite

 
class FunctionTestCase(TestCase)
    A test case that wraps a test function.
 
This is useful for slipping pre-existing test functions into the
unittest framework. Optionally, set-up and tidy-up functions can be
supplied. As with TestCase, the tidy-up ('tearDown') function will
always be called if the set-up ('setUp') function ran successfully.
 
 
Method resolution order:
FunctionTestCase
TestCase
__builtin__.object

Methods defined here:
__eq__(self, other)
__hash__(self)
__init__(self, testFunc, setUp=None, tearDown=None, description=None)
__ne__(self, other)
__repr__(self)
__str__(self)
id(self)
runTest(self)
setUp(self)
shortDescription(self)
tearDown(self)

Methods inherited from TestCase:
__call__(self, *args, **kwds)
addCleanup(self, function, *args, **kwargs)
Add a function, with arguments, to be called when the test is
completed. Functions added are called on a LIFO basis and are
called after tearDown on test failure or success.
 
Cleanup items are called even if setUp fails (unlike tearDown).
addTypeEqualityFunc(self, typeobj, function)
Add a type specific assertEqual style function to compare a type.
 
This method is for use by TestCase subclasses that need to register
their own type equality functions to provide nicer error messages.
 
Args:
    typeobj: The data type to call this function on when both values
            are of the same type in assertEqual().
    function: The callable taking two arguments and an optional
            msg= argument that raises self.failureException with a
            useful error message when the two arguments are not equal.
assertAlmostEqual(self, first, second, places=None, msg=None, delta=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, or by comparing that the
between the two objects is more than the given delta.
 
Note that decimal places (from zero) are usually not the same
as significant digits (measured from the most signficant digit).
 
If the two objects compare equal then they will automatically
compare almost equal.
assertAlmostEquals = assertAlmostEqual(self, first, second, places=None, msg=None, delta=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, or by comparing that the
between the two objects is more than the given delta.
 
Note that decimal places (from zero) are usually not the same
as significant digits (measured from the most signficant digit).
 
If the two objects compare equal then they will automatically
compare almost equal.
assertDictContainsSubset(self, expected, actual, msg=None)
Checks whether actual is a superset of expected.
assertDictEqual(self, d1, d2, msg=None)
assertEqual(self, first, second, msg=None)
Fail if the two objects are unequal as determined by the '=='
operator.
assertEquals = assertEqual(self, first, second, msg=None)
Fail if the two objects are unequal as determined by the '=='
operator.
assertFalse(self, expr, msg=None)
Check that the expression is false.
assertGreater(self, a, b, msg=None)
Just like self.assertTrue(a > b), but with a nicer default message.
assertGreaterEqual(self, a, b, msg=None)
Just like self.assertTrue(a >= b), but with a nicer default message.
assertIn(self, member, container, msg=None)
Just like self.assertTrue(a in b), but with a nicer default message.
assertIs(self, expr1, expr2, msg=None)
Just like self.assertTrue(a is b), but with a nicer default message.
assertIsInstance(self, obj, cls, msg=None)
Same as self.assertTrue(isinstance(obj, cls)), with a nicer
default message.
assertIsNone(self, obj, msg=None)
Same as self.assertTrue(obj is None), with a nicer default message.
assertIsNot(self, expr1, expr2, msg=None)
Just like self.assertTrue(a is not b), but with a nicer default message.
assertIsNotNone(self, obj, msg=None)
Included for symmetry with assertIsNone.
assertItemsEqual(self, expected_seq, actual_seq, msg=None)
An unordered sequence specific comparison. It asserts that
actual_seq and expected_seq have the same element counts.
Equivalent to::
 
    self.assertEqual(Counter(iter(actual_seq)),
                     Counter(iter(expected_seq)))
 
Asserts that each element has the same count in both sequences.
Example:
    - [0, 1, 1] and [1, 0, 1] compare equal.
    - [0, 0, 1] and [0, 1] compare unequal.
assertLess(self, a, b, msg=None)
Just like self.assertTrue(a < b), but with a nicer default message.
assertLessEqual(self, a, b, msg=None)
Just like self.assertTrue(a <= b), but with a nicer default message.
assertListEqual(self, list1, list2, msg=None)
A list-specific equality assertion.
 
Args:
    list1: The first list to compare.
    list2: The second list to compare.
    msg: Optional message to use on failure instead of a list of
            differences.
assertMultiLineEqual(self, first, second, msg=None)
Assert that two multi-line strings are equal.
assertNotAlmostEqual(self, first, second, places=None, msg=None, delta=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, or by comparing that the
between the two objects is less than the given delta.
 
Note that decimal places (from zero) are usually not the same
as significant digits (measured from the most signficant digit).
 
Objects that are equal automatically fail.
assertNotAlmostEquals = assertNotAlmostEqual(self, first, second, places=None, msg=None, delta=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, or by comparing that the
between the two objects is less than the given delta.
 
Note that decimal places (from zero) are usually not the same
as significant digits (measured from the most signficant digit).
 
Objects that are equal automatically fail.
assertNotEqual(self, first, second, msg=None)
Fail if the two objects are equal as determined by the '!='
operator.
assertNotEquals = assertNotEqual(self, first, second, msg=None)
Fail if the two objects are equal as determined by the '!='
operator.
assertNotIn(self, member, container, msg=None)
Just like self.assertTrue(a not in b), but with a nicer default message.
assertNotIsInstance(self, obj, cls, msg=None)
Included for symmetry with assertIsInstance.
assertNotRegexpMatches(self, text, unexpected_regexp, msg=None)
Fail the test if the text matches the regular expression.
assertRaises(self, excClass, callableObj=<function _sentinel>, *args, **kwargs)
Fail unless an exception of class excClass is raised
by callableObj when invoked with arguments args and keyword
arguments kwargs. If a different type of exception is
raised, it will not be caught, and the test case will be
deemed to have suffered an error, exactly as for an
unexpected exception.
 
If called with callableObj omitted, will return a
context object used like this::
 
     with self.assertRaises(SomeException):
         do_something()
 
The context manager keeps a reference to the exception as
the 'exception' attribute. This allows you to inspect the
exception after the assertion::
 
    with self.assertRaises(SomeException) as cm:
        do_something()
    the_exception = cm.exception
    self.assertEqual(the_exception.error_code, 3)
assertRaisesRegexp(self, expected_exception, expected_regexp, callable_obj=<function _sentinel>, *args, **kwargs)
Asserts that the message in a raised exception matches a regexp.
 
Args:
    expected_exception: Exception class expected to be raised.
    expected_regexp: Regexp (re pattern object or string) expected
            to be found in error message.
    callable_obj: Function to be called.
    args: Extra args.
    kwargs: Extra kwargs.
assertRegexpMatches(self, text, expected_regexp, msg=None)
Fail the test unless the text matches the regular expression.
assertSequenceEqual(self, seq1, seq2, msg=None, seq_type=None)
An equality assertion for ordered sequences (like lists and tuples).
 
For the purposes of this function, a valid ordered sequence type is one
which can be indexed, has a length, and has an equality operator.
 
Args:
    seq1: The first sequence to compare.
    seq2: The second sequence to compare.
    seq_type: The expected datatype of the sequences, or None if no
            datatype should be enforced.
    msg: Optional message to use on failure instead of a list of
            differences.
assertSetEqual(self, set1, set2, msg=None)
A set-specific equality assertion.
 
Args:
    set1: The first set to compare.
    set2: The second set to compare.
    msg: Optional message to use on failure instead of a list of
            differences.
 
assertSetEqual uses ducktyping to support different types of sets, and
is optimized for sets specifically (parameters must support a
difference method).
assertTrue(self, expr, msg=None)
Check that the expression is true.
assertTupleEqual(self, tuple1, tuple2, msg=None)
A tuple-specific equality assertion.
 
Args:
    tuple1: The first tuple to compare.
    tuple2: The second tuple to compare.
    msg: Optional message to use on failure instead of a list of
            differences.
assert_ = assertTrue(self, expr, msg=None)
Check that the expression is true.
countTestCases(self)
debug(self)
Run the test without collecting errors in a TestResult
defaultTestResult(self)
doCleanups(self)
Execute all cleanup functions. Normally called for you after
tearDown.
fail(self, msg=None)
Fail immediately, with the given message.
failIf = deprecated_func(*args, **kwargs)
failIfAlmostEqual = deprecated_func(*args, **kwargs)
failIfEqual = deprecated_func(*args, **kwargs)
failUnless = deprecated_func(*args, **kwargs)
failUnlessAlmostEqual = deprecated_func(*args, **kwargs)
failUnlessEqual = deprecated_func(*args, **kwargs)
failUnlessRaises = deprecated_func(*args, **kwargs)
run(self, result=None)
skipTest(self, reason)
Skip this test.

Class methods inherited from TestCase:
setUpClass(cls) from __builtin__.type
Hook method for setting up class fixture before running tests in the class.
tearDownClass(cls) from __builtin__.type
Hook method for deconstructing the class fixture after running all tests in the class.

Data descriptors inherited from TestCase:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from TestCase:
failureException = <type 'exceptions.AssertionError'>
Assertion failed.
longMessage = False
maxDiff = 640

 
class SkipTest(exceptions.Exception)
    Raise this exception in a test to skip it.
 
Usually you can use TestCase.skipTest() or one of the skipping decorators
instead of raising this directly.
 
 
Method resolution order:
SkipTest
exceptions.Exception
exceptions.BaseException
__builtin__.object

Data descriptors defined here:
__weakref__
list of weak references to the object (if defined)

Methods inherited from exceptions.Exception:
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature

Data and other attributes inherited from exceptions.Exception:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

Methods inherited from exceptions.BaseException:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__getitem__(...)
x.__getitem__(y) <==> x[y]
__getslice__(...)
x.__getslice__(i, j) <==> x[i:j]
 
Use of negative indices is not supported.
__reduce__(...)
__repr__(...)
x.__repr__() <==> repr(x)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value
__setstate__(...)
__str__(...)
x.__str__() <==> str(x)
__unicode__(...)

Data descriptors inherited from exceptions.BaseException:
__dict__
args
message

 
class TestCase(__builtin__.object)
    A class whose instances are single test cases.
 
By default, the test code itself should be placed in a method named
'runTest'.
 
If the fixture may be used for many test cases, create as
many test methods as are needed. When instantiating such a TestCase
subclass, specify in the constructor arguments the name of the test method
that the instance is to execute.
 
Test authors should subclass TestCase for their own tests. Construction
and deconstruction of the test's environment ('fixture') can be
implemented by overriding the 'setUp' and 'tearDown' methods respectively.
 
If it is necessary to override the __init__ method, the base class
__init__ method must always be called. It is important that subclasses
should not change the signature of their __init__ method, since instances
of the classes are instantiated automatically by parts of the framework
in order to be run.
 
When subclassing TestCase, you can set these attributes:
* failureException: determines which exception will be raised when
    the instance's assertion methods fail; test methods raising this
    exception will be deemed to have 'failed' rather than 'errored'.
* longMessage: determines whether long messages (including repr of
    objects used in assert methods) will be printed on failure in *addition*
    to any explicit message passed.
* maxDiff: sets the maximum length of a diff in failure messages
    by assert methods using difflib. It is looked up as an instance
    attribute so can be configured by individual tests if required.
 
  Methods defined here:
__call__(self, *args, **kwds)
__eq__(self, other)
__hash__(self)
__init__(self, methodName='runTest')
Create an instance of the class that will use the named test
method when executed. Raises a ValueError if the instance does
not have a method with the specified name.
__ne__(self, other)
__repr__(self)
__str__(self)
addCleanup(self, function, *args, **kwargs)
Add a function, with arguments, to be called when the test is
completed. Functions added are called on a LIFO basis and are
called after tearDown on test failure or success.
 
Cleanup items are called even if setUp fails (unlike tearDown).
addTypeEqualityFunc(self, typeobj, function)
Add a type specific assertEqual style function to compare a type.
 
This method is for use by TestCase subclasses that need to register
their own type equality functions to provide nicer error messages.
 
Args:
    typeobj: The data type to call this function on when both values
            are of the same type in assertEqual().
    function: The callable taking two arguments and an optional
            msg= argument that raises self.failureException with a
            useful error message when the two arguments are not equal.
assertAlmostEqual(self, first, second, places=None, msg=None, delta=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, or by comparing that the
between the two objects is more than the given delta.
 
Note that decimal places (from zero) are usually not the same
as significant digits (measured from the most signficant digit).
 
If the two objects compare equal then they will automatically
compare almost equal.
assertAlmostEquals = assertAlmostEqual(self, first, second, places=None, msg=None, delta=None)
assertDictContainsSubset(self, expected, actual, msg=None)
Checks whether actual is a superset of expected.
assertDictEqual(self, d1, d2, msg=None)
assertEqual(self, first, second, msg=None)
Fail if the two objects are unequal as determined by the '=='
operator.
assertEquals = assertEqual(self, first, second, msg=None)
assertFalse(self, expr, msg=None)
Check that the expression is false.
assertGreater(self, a, b, msg=None)
Just like self.assertTrue(a > b), but with a nicer default message.
assertGreaterEqual(self, a, b, msg=None)
Just like self.assertTrue(a >= b), but with a nicer default message.
assertIn(self, member, container, msg=None)
Just like self.assertTrue(a in b), but with a nicer default message.
assertIs(self, expr1, expr2, msg=None)
Just like self.assertTrue(a is b), but with a nicer default message.
assertIsInstance(self, obj, cls, msg=None)
Same as self.assertTrue(isinstance(obj, cls)), with a nicer
default message.
assertIsNone(self, obj, msg=None)
Same as self.assertTrue(obj is None), with a nicer default message.
assertIsNot(self, expr1, expr2, msg=None)
Just like self.assertTrue(a is not b), but with a nicer default message.
assertIsNotNone(self, obj, msg=None)
Included for symmetry with assertIsNone.
assertItemsEqual(self, expected_seq, actual_seq, msg=None)
An unordered sequence specific comparison. It asserts that
actual_seq and expected_seq have the same element counts.
Equivalent to::
 
    self.assertEqual(Counter(iter(actual_seq)),
                     Counter(iter(expected_seq)))
 
Asserts that each element has the same count in both sequences.
Example:
    - [0, 1, 1] and [1, 0, 1] compare equal.
    - [0, 0, 1] and [0, 1] compare unequal.
assertLess(self, a, b, msg=None)
Just like self.assertTrue(a < b), but with a nicer default message.
assertLessEqual(self, a, b, msg=None)
Just like self.assertTrue(a <= b), but with a nicer default message.
assertListEqual(self, list1, list2, msg=None)
A list-specific equality assertion.
 
Args:
    list1: The first list to compare.
    list2: The second list to compare.
    msg: Optional message to use on failure instead of a list of
            differences.
assertMultiLineEqual(self, first, second, msg=None)
Assert that two multi-line strings are equal.
assertNotAlmostEqual(self, first, second, places=None, msg=None, delta=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, or by comparing that the
between the two objects is less than the given delta.
 
Note that decimal places (from zero) are usually not the same
as significant digits (measured from the most signficant digit).
 
Objects that are equal automatically fail.
assertNotAlmostEquals = assertNotAlmostEqual(self, first, second, places=None, msg=None, delta=None)
assertNotEqual(self, first, second, msg=None)
Fail if the two objects are equal as determined by the '!='
operator.
assertNotEquals = assertNotEqual(self, first, second, msg=None)
assertNotIn(self, member, container, msg=None)
Just like self.assertTrue(a not in b), but with a nicer default message.
assertNotIsInstance(self, obj, cls, msg=None)
Included for symmetry with assertIsInstance.
assertNotRegexpMatches(self, text, unexpected_regexp, msg=None)
Fail the test if the text matches the regular expression.
assertRaises(self, excClass, callableObj=<function _sentinel>, *args, **kwargs)
Fail unless an exception of class excClass is raised
by callableObj when invoked with arguments args and keyword
arguments kwargs. If a different type of exception is
raised, it will not be caught, and the test case will be
deemed to have suffered an error, exactly as for an
unexpected exception.
 
If called with callableObj omitted, will return a
context object used like this::
 
     with self.assertRaises(SomeException):
         do_something()
 
The context manager keeps a reference to the exception as
the 'exception' attribute. This allows you to inspect the
exception after the assertion::
 
    with self.assertRaises(SomeException) as cm:
        do_something()
    the_exception = cm.exception
    self.assertEqual(the_exception.error_code, 3)
assertRaisesRegexp(self, expected_exception, expected_regexp, callable_obj=<function _sentinel>, *args, **kwargs)
Asserts that the message in a raised exception matches a regexp.
 
Args:
    expected_exception: Exception class expected to be raised.
    expected_regexp: Regexp (re pattern object or string) expected
            to be found in error message.
    callable_obj: Function to be called.
    args: Extra args.
    kwargs: Extra kwargs.
assertRegexpMatches(self, text, expected_regexp, msg=None)
Fail the test unless the text matches the regular expression.
assertSequenceEqual(self, seq1, seq2, msg=None, seq_type=None)
An equality assertion for ordered sequences (like lists and tuples).
 
For the purposes of this function, a valid ordered sequence type is one
which can be indexed, has a length, and has an equality operator.
 
Args:
    seq1: The first sequence to compare.
    seq2: The second sequence to compare.
    seq_type: The expected datatype of the sequences, or None if no
            datatype should be enforced.
    msg: Optional message to use on failure instead of a list of
            differences.
assertSetEqual(self, set1, set2, msg=None)
A set-specific equality assertion.
 
Args:
    set1: The first set to compare.
    set2: The second set to compare.
    msg: Optional message to use on failure instead of a list of
            differences.
 
assertSetEqual uses ducktyping to support different types of sets, and
is optimized for sets specifically (parameters must support a
difference method).
assertTrue(self, expr, msg=None)
Check that the expression is true.
assertTupleEqual(self, tuple1, tuple2, msg=None)
A tuple-specific equality assertion.
 
Args:
    tuple1: The first tuple to compare.
    tuple2: The second tuple to compare.
    msg: Optional message to use on failure instead of a list of
            differences.
assert_ = assertTrue(self, expr, msg=None)
countTestCases(self)
debug(self)
Run the test without collecting errors in a TestResult
defaultTestResult(self)
doCleanups(self)
Execute all cleanup functions. Normally called for you after
tearDown.
fail(self, msg=None)
Fail immediately, with the given message.
failIf = deprecated_func(*args, **kwargs)
failIfAlmostEqual = deprecated_func(*args, **kwargs)
failIfEqual = deprecated_func(*args, **kwargs)
failUnless = deprecated_func(*args, **kwargs)
failUnlessAlmostEqual = deprecated_func(*args, **kwargs)
failUnlessEqual = deprecated_func(*args, **kwargs)
failUnlessRaises = deprecated_func(*args, **kwargs)
id(self)
run(self, result=None)
setUp(self)
Hook method for setting up the test fixture before exercising it.
shortDescription(self)
Returns a one-line description of the test, or None if no
description has been provided.
 
The default implementation of this method returns the first line of
the specified test method's docstring.
skipTest(self, reason)
Skip this test.
tearDown(self)
Hook method for deconstructing the test fixture after testing it.

Class methods defined here:
setUpClass(cls) from __builtin__.type
Hook method for setting up class fixture before running tests in the class.
tearDownClass(cls) from __builtin__.type
Hook method for deconstructing the class fixture after running all tests in the class.

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
failureException = <type 'exceptions.AssertionError'>
Assertion failed.
longMessage = False
maxDiff = 640

 
class TestLoader(__builtin__.object)
    This class is responsible for loading tests according to various criteria
and returning them wrapped in a TestSuite
 
  Methods defined here:
discover(self, start_dir, pattern='test*.py', top_level_dir=None)
Find and return all test modules from the specified start
directory, recursing into subdirectories to find them. Only test files
that match the pattern will be loaded. (Using shell style pattern
matching.)
 
All test modules must be importable from the top level of the project.
If the start directory is not the top level directory then the top
level directory must be specified separately.
 
If a test package name (directory with '__init__.py') matches the
pattern then the package will be checked for a 'load_tests' function. If
this exists then it will be called with loader, tests, pattern.
 
If load_tests exists then discovery does  *not* recurse into the package,
load_tests is responsible for loading all tests in the package.
 
The pattern is deliberately not stored as a loader attribute so that
packages can continue discovery themselves. top_level_dir is stored so
load_tests does not need to pass this argument in to loader.discover().
getTestCaseNames(self, testCaseClass)
Return a sorted sequence of method names found within testCaseClass
loadTestsFromModule(self, module, use_load_tests=True)
Return a suite of all tests cases contained in the given module
loadTestsFromName(self, name, module=None)
Return a suite of all tests cases given a string specifier.
 
The name may resolve either to a module, a test case class, a
test method within a test case class, or a callable object which
returns a TestCase or TestSuite instance.
 
The method optionally resolves the names relative to a given module.
loadTestsFromNames(self, names, module=None)
Return a suite of all tests cases found using the given sequence
of string specifiers. See 'loadTestsFromName()'.
loadTestsFromTestCase(self, testCaseClass)
Return a suite of all tests cases contained in testCaseClass

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
sortTestMethodsUsing = <built-in function cmp>
cmp(x, y) -> integer
 
Return negative if x<y, zero if x==y, positive if x>y.
suiteClass = <class 'unittest.suite.TestSuite'>
A test suite is a composite test consisting of a number of TestCases.
 
For use, create an instance of TestSuite, then add test case instances.
When all tests have been added, the suite can be passed to a test
runner, such as TextTestRunner. It will run the individual test cases
in the order in which they were added, aggregating the results. When
subclassing, do not forget to call the base class constructor.
testMethodPrefix = 'test'

 
class TestResult(__builtin__.object)
    Holder for test result information.
 
Test results are automatically managed by the TestCase and TestSuite
classes, and do not need to be explicitly manipulated by writers of tests.
 
Each instance holds the total number of tests run, and collections of
failures and errors that occurred among those test runs. The collections
contain tuples of (testcase, exceptioninfo), where exceptioninfo is the
formatted traceback of the error that occurred.
 
  Methods defined here:
__init__(self, stream=None, descriptions=None, verbosity=None)
__repr__(self)
addError(self, *args, **kw)
Called when an error has occurred. 'err' is a tuple of values as
returned by sys.exc_info().
addExpectedFailure(self, test, err)
Called when an expected failure/error occured.
addFailure(self, *args, **kw)
Called when an error has occurred. 'err' is a tuple of values as
returned by sys.exc_info().
addSkip(self, test, reason)
Called when a test is skipped.
addSuccess(self, test)
Called when a test has completed successfully
addUnexpectedSuccess(self, *args, **kw)
Called when a test was expected to fail, but succeed.
printErrors(self)
Called by TestRunner after test run
startTest(self, test)
Called when the given test is about to be run
startTestRun(self)
Called once before any tests are executed.
 
See startTest for a method called before each test.
stop(self)
Indicates that the tests should be aborted
stopTest(self, test)
Called when the given test has been run
stopTestRun(self)
Called once after all tests are executed.
 
See stopTest for a method called after each test.
wasSuccessful(self)
Tells whether or not this result was a success

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

 
class TestSuite(BaseTestSuite)
    A test suite is a composite test consisting of a number of TestCases.
 
For use, create an instance of TestSuite, then add test case instances.
When all tests have been added, the suite can be passed to a test
runner, such as TextTestRunner. It will run the individual test cases
in the order in which they were added, aggregating the results. When
subclassing, do not forget to call the base class constructor.
 
 
Method resolution order:
TestSuite
BaseTestSuite
__builtin__.object

Methods defined here:
debug(self)
Run the tests without collecting errors in a TestResult
run(self, result, debug=False)

Methods inherited from BaseTestSuite:
__call__(self, *args, **kwds)
__eq__(self, other)
__init__(self, tests=())
__iter__(self)
__ne__(self, other)
__repr__(self)
addTest(self, test)
addTests(self, tests)
countTestCases(self)

Data descriptors inherited from BaseTestSuite:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from BaseTestSuite:
__hash__ = None

 
class TextTestResult(unittest.result.TestResult)
    A test result class that can print formatted text results to a stream.
 
Used by TextTestRunner.
 
 
Method resolution order:
TextTestResult
unittest.result.TestResult
__builtin__.object

Methods defined here:
__init__(self, stream, descriptions, verbosity)
addError(self, test, err)
addExpectedFailure(self, test, err)
addFailure(self, test, err)
addSkip(self, test, reason)
addSuccess(self, test)
addUnexpectedSuccess(self, test)
getDescription(self, test)
printErrorList(self, flavour, errors)
printErrors(self)
startTest(self, test)

Data and other attributes defined here:
separator1 = '======================================================================'
separator2 = '----------------------------------------------------------------------'

Methods inherited from unittest.result.TestResult:
__repr__(self)
startTestRun(self)
Called once before any tests are executed.
 
See startTest for a method called before each test.
stop(self)
Indicates that the tests should be aborted
stopTest(self, test)
Called when the given test has been run
stopTestRun(self)
Called once after all tests are executed.
 
See stopTest for a method called after each test.
wasSuccessful(self)
Tells whether or not this result was a success

Data descriptors inherited from unittest.result.TestResult:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

 
class TextTestRunner(__builtin__.object)
    A test runner class that displays results in textual form.
 
It prints out the names of tests as they are run, errors as they
occur, and a summary of the results at the end of the test run.
 
  Methods defined here:
__init__(self, stream=<open file '<stderr>', mode 'w'>, descriptions=True, verbosity=1, failfast=False, buffer=False, resultclass=None)
run(self, test)
Run the given test case or test suite.

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
resultclass = <class 'unittest.runner.TextTestResult'>
A test result class that can print formatted text results to a stream.
 
Used by TextTestRunner.

 
main = class TestProgram(__builtin__.object)
    A command-line program that runs a set of tests; this is primarily
for making test modules conveniently executable.
 
  Methods defined here:
__init__(self, module='__main__', defaultTest=None, argv=None, testRunner=None, testLoader=<unittest.loader.TestLoader object>, exit=True, verbosity=1, failfast=None, catchbreak=None, buffer=None)
createTests(self)
parseArgs(self, argv)
runTests(self)
usageExit(self, msg=None)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
USAGE = 'Usage: %(progName)s [options] [test] [...]\n\nOpti... in MyTestCase\n'
buffer = None
catchbreak = None
failfast = None
progName = None

 
Functions
       
expectedFailure(func)
findTestCases(module, prefix='test', sortUsing=<built-in function cmp>, suiteClass=<class 'unittest.suite.TestSuite'>)
getTestCaseNames(testCaseClass, prefix, sortUsing=<built-in function cmp>)
installHandler()
makeSuite(testCaseClass, prefix='test', sortUsing=<built-in function cmp>, suiteClass=<class 'unittest.suite.TestSuite'>)
registerResult(result)
removeHandler(method=None)
removeResult(result)
skip(reason)
Unconditionally skip a test.
skipIf(condition, reason)
Skip a test if the condition is true.
skipUnless(condition, reason)
Skip a test unless the condition is true.

 
Data
        __all__ = ['TestResult', 'TestCase', 'TestSuite', 'TextTestRunner', 'TestLoader', 'FunctionTestCase', 'main', 'defaultTestLoader', 'SkipTest', 'skip', 'skipIf', 'skipUnless', 'expectedFailure', 'TextTestResult', 'installHandler', 'registerResult', 'removeResult', 'removeHandler', 'getTestCaseNames', 'makeSuite', ...]
defaultTestLoader = <unittest.loader.TestLoader object>