__init__.py 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. """
  2. Python unit testing framework, based on Erich Gamma's JUnit and Kent Beck's
  3. Smalltalk testing framework (used with permission).
  4. This module contains the core framework classes that form the basis of
  5. specific test cases and suites (TestCase, TestSuite etc.), and also a
  6. text-based utility class for running the tests and reporting the results
  7. (TextTestRunner).
  8. Simple usage:
  9. import unittest
  10. class IntegerArithmeticTestCase(unittest.TestCase):
  11. def testAdd(self): ## test method names begin 'test*'
  12. self.assertEqual((1 + 2), 3)
  13. self.assertEqual(0 + 1, 1)
  14. def testMultiply(self):
  15. self.assertEqual((0 * 10), 0)
  16. self.assertEqual((5 * 8), 40)
  17. if __name__ == '__main__':
  18. unittest.main()
  19. Further information is available in the bundled documentation, and from
  20. http://docs.python.org/library/unittest.html
  21. Copyright (c) 1999-2003 Steve Purcell
  22. Copyright (c) 2003-2010 Python Software Foundation
  23. This module is free software, and you may redistribute it and/or modify
  24. it under the same terms as Python itself, so long as this copyright message
  25. and disclaimer are retained in their original form.
  26. IN NO EVENT SHALL THE AUTHOR BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT,
  27. SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OF
  28. THIS CODE, EVEN IF THE AUTHOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
  29. DAMAGE.
  30. THE AUTHOR SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT
  31. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
  32. PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS,
  33. AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
  34. SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
  35. """
  36. __all__ = ['TestResult', 'TestCase', 'TestSuite',
  37. 'TextTestRunner', 'TestLoader', 'FunctionTestCase', 'main',
  38. 'defaultTestLoader', 'SkipTest', 'skip', 'skipIf', 'skipUnless',
  39. 'expectedFailure', 'TextTestResult', 'installHandler',
  40. 'registerResult', 'removeResult', 'removeHandler']
  41. # Expose obsolete functions for backwards compatibility
  42. __all__.extend(['getTestCaseNames', 'makeSuite', 'findTestCases'])
  43. __unittest = True
  44. from .result import TestResult
  45. from .case import (TestCase, FunctionTestCase, SkipTest, skip, skipIf,
  46. skipUnless, expectedFailure)
  47. from .suite import BaseTestSuite, TestSuite
  48. from .loader import (TestLoader, defaultTestLoader, makeSuite, getTestCaseNames,
  49. findTestCases)
  50. from .main import TestProgram, main
  51. from .runner import TextTestRunner, TextTestResult
  52. from .signals import installHandler, registerResult, removeResult, removeHandler
  53. # deprecated
  54. _TextTestResult = TextTestResult
  55. # There are no tests here, so don't try to run anything discovered from
  56. # introspecting the symbols (e.g. FunctionTestCase). Instead, all our
  57. # tests come from within unittest.test.
  58. def load_tests(loader, tests, pattern):
  59. import os.path
  60. # top level directory cached on loader instance
  61. this_dir = os.path.dirname(__file__)
  62. return loader.discover(start_dir=this_dir, pattern=pattern)