Files
python3-cookbook/source/chapters/p14_test_debug_and_exceptions.rst
2015-04-28 15:13:01 +08:00

19 lines
601 B
ReStructuredText
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

=============================
第十四章:测试调试和异常
=============================
Testing rocks, but debugging? Not so much. The fact that theres no compiler to analyze
your code before Python executes it makes testing a critical part of development. The
goal of this chapter is to discuss some common problems related to testing, debugging,
and exception handling. It is not meant to be a gentle introduction to test-driven development
or the unittest module. Thus, some familiarity with testing concepts is
assumed.
Contents:
.. toctree::
:maxdepth: 1
:glob:
../c14/*