Made it through test updates.
authorAnthony Scopatz <scopatz@gmail.com>
Tue, 3 Apr 2012 02:32:00 +0000 (21:32 -0500)
committerW. Trevor King <wking@tremily.us>
Fri, 1 Nov 2013 03:14:26 +0000 (20:14 -0700)
5-Testing/Readme.md
5-Testing/Readme.rst

index 02f467edf76fc5ded3431d5304a331602b87f8c7..e485aa884721246fb49af3fa7eefbe1ff130e1e2 100644 (file)
@@ -47,6 +47,13 @@ repeatable?
 software?" That is, is the code designed in such a way as to produce the
 answers we are interested in, data we want, etc.
 
+## Uncertainty Quantification
+
+*Uncertainty Quantification* is the process of asking, "Given that our
+algorithm may not be deterministic, was our execution within acceptable
+error bounds?" This is particularly important for anything which uses
+random numbers, eg Monte Carlo methods.
+
 # Where are tests?
 
 Say we have an averaging function:
@@ -130,9 +137,11 @@ import mean
 
 # When should we test?
 
-**ALWAYS.** The longer answer is that testing either before or after
-your software is written will improve your code, but testing after your
-program is used for something important is too late.
+**ALWAYS!!!**
+
+The longer answer is that testing either before or after your software
+is written will improve your code, but testing after your program is
+used for something important is too late.
 
 If we have a robust set of tests, we can run them before adding
 something new and after adding something new. If the tests give the same
@@ -147,123 +156,105 @@ remember what the widget class does in detail. If you have a test that
 checks all of the widget's functionality, you can look at the test to
 remember what it's supposed to do.
 
-**Who tests?** In a collaborative coding environment, where many
-developers contribute to the same code, developers should be responsible
-individually for testing the functions they create and collectively for
-testing the code as a whole.
-
-Professionals invariably test their code, and take pride in test
-coverage, the percent of their functions that they feel confident are
-comprehensively tested.
-
-**How does one test?**
-
-The type of tests you’ll write is determined by the testing framework
-you adopt.
-
-**Types of Tests:** *Exceptions* Exceptions can be thought of as type of
-runttime test. They alert the user to exceptional behavior in the code.
-Often, exceptions are related to functions that depend on input that is
-unknown at compile time. Checks that occur within the code to handle
-exceptional behavior that results from this type of input are called
-Exceptions.
-
-*Unit Tests*
+# Who should test?
 
-Unit tests are a type of test which test the fundametal units a
-program’s functionality. Often, this is on the class or function level
-of detail.
+In a collaborative coding environment, where many developers contribute
+to the same code base, developers should be responsible individually for
+testing the functions they create and collectively for testing the code
+as a whole.
 
-To test functions and classes, we want to test the interfaces, rather
-than the implmentation. Treating the implementation as a ‘black box’, we
-can probe the expected behavior with boundary cases for the inputs.
-
-In the case of our fix\_missing function, we need to test the expected
-behavior by providing lines and files that do and do not have missing
-entries. We should also test the behavior for empty lines and files as
-well. These are boundary cases.
+Professionals often test their code, and take pride in test coverage,
+the percent of their functions that they feel confident are
+comprehensively tested.
 
-*System Tests*
+# How are tests written?
 
-System level tests are intended to test the code as a whole. As opposed
-to unit tests, system tests ask for the behavior as a whole. This sort
-of testing involves comparison with other validated codes, analytical
-solutions, etc.
+The type of tests that are written is determined by the testing
+framework you adopt. Don't worry, there are a lot of choices.
 
-*Regression Tests*
+## Types of Tests
 
-A regression test ensures that new code does change anything. If you
-change the default answer, for example, or add a new question, you’ll
-need to make sure that missing entries are still found and fixed.
+**Exceptions:** Exceptions can be thought of as type of runttime test.
+They alert the user to exceptional behavior in the code. Often,
+exceptions are related to functions that depend on input that is unknown
+at compile time. Checks that occur within the code to handle exceptional
+behavior that results from this type of input are called Exceptions.
 
-*Integration Tests*
+**Unit Tests:** Unit tests are a type of test which test the fundametal
+units of a program's functionality. Often, this is on the class or
+function level of detail. However what defines a *code unit* is not
+formally defined.
 
-Integration tests query the ability of the code to integrate well with
-the system configuration and third party libraries and modules. This
-type of test is essential for codes that depend on libraries which might
-be updated independently of your code or when your code might be used by
-a number of users who may have various versions of libraries.
+To test functions and classes, the interfaces (API) - rather than the
+implmentation - should be tested. Treating the implementation as a ack
+box, we can probe the expected behavior with boundary cases for the
+inputs.
 
-**Test Suites** Putting a series of unit tests into a suite creates, as
-you might imagine, a test suite.
+**System Tests:** System level tests are intended to test the code as a
+whole. As opposed to unit tests, system tests ask for the behavior as a
+whole. This sort of testing involves comparison with other validated
+codes, analytical solutions, etc.
 
-**Elements of a Test**
+**Regression Tests:** A regression test ensures that new code does
+change anything. If you change the default answer, for example, or add a
+new question, you'll need to make sure that missing entries are still
+found and fixed.
 
-**Behavior**
+**Integration Tests:** Integration tests query the ability of the code
+to integrate well with the system configuration and third party
+libraries and modules. This type of test is essential for codes that
+depend on libraries which might be updated independently of your code or
+when your code might be used by a number of users who may have various
+versions of libraries.
 
-The behavior you want to test. For example, you might want to test the
-fun() function.
+**Test Suites:** Putting a series of unit tests into a collection of
+modules creates, a test suite. Typically the suite as a whole is
+executed (rather than each test individually) when verifying that the
+code base still functions after changes have been made.
 
-**Expected Result**
+# Elements of a Test
 
-This might be a single number, a range of numbers, a new, fully defined
-object, a system state, an exception, etc.
+**Behavior:** The behavior you want to test. For example, you might want
+to test the fun() function.
 
-When we run the fun function, we expect to generate some fun. If we
-don’t generate any fun, the fun() function should fail its test.
+**Expected Result:** This might be a single number, a range of numbers,
+a new fully defined object, a system state, an exception, etc. When we
+run the fun() function, we expect to generate some fun. If we don't
+generate any fun, the fun() function should fail its test.
 Alternatively, if it does create some fun, the fun() function should
-pass this test.
-
-**Assertions**
-
-Require that some conditional be true. If the conditional is false, the
-test fails.
+pass this test. The the expected result should known *a priori*. For
+numerical functions, this is result is ideally analytically determined
+even if the fucntion being tested isn't.
 
-**Fixtures**
+**Assertions:** Require that some conditional be true. If the
+conditional is false, the test fails.
 
-Sometimes you have to do some legwork to create the objects that are
-necessary to run one or many tests. These objects are called fixtures.
+**Fixtures:** Sometimes you have to do some legwork to create the
+objects that are necessary to run one or many tests. These objects are
+called fixtures as they are not really part of the test themselves but
+rather involve getting the computer into the appropriate state.
 
 For example, since fun varies a lot between people, the fun() function
-is a member function of the Person class. In order to check the fun
-function, then, we need to create an appropriate Person object on which
-to run fun().
+is a method of the Person class. In order to check the fun function,
+then, we need to create an appropriate Person object on which to run
+fun().
 
-**Setup and teardown**
+**Setup and teardown:** Creating fixtures is often done in a call to a
+setup function. Deleting them and other cleanup is done in a teardown
+function.
 
-Creating fixtures is often done in a call to a setup function. Deleting
-them and other cleanup is done in a teardown function.
-
-**The Big Picture** Putting all this together, the testing algorithm is
+**The Big Picture:** Putting all this together, the testing algorithm is
 often:
 
-    setUp
-    test
-    tearDown
-
-But, sometimes it’s the case that your tests change the fixtures. If so,
-it’s better for the setup and teardown functions to occur on either side
-of each test. In that case, the testing algorithm should be:
-
-    setUp
-    test1
-    tearDown
-    setUp
-    test2
-    tearDown
-    setUp
-    test3
-    tearDown
+```python
+setup()
+test()
+teardown()
+```
+
+But, sometimes it's the case that your tests change the fixtures. If so,
+it's better for the setup() and teardown() functions to occur on either
+side of each test. In that case, the testing algorithm should be:
 
 ### Python Nose
 
index 771d270cd32fae15734c4513df07a88c1e856e95..a9ea7da552063acf9d95bf07d10e1a25c63e7c68 100644 (file)
@@ -43,6 +43,13 @@ Validation
 That is, is the code designed in such a way as to produce the answers we are 
 interested in, data we want, etc.
 
+Uncertainty Quantification
+**************************
+*Uncertainty Quantification* is the process of asking, "Given that our algorithm
+may not be deterministic, was our execution within acceptable error bounds?"  This 
+is particularly important for anything which uses random numbers, eg Monte Carlo methods.
+
+
 Where are tests?
 ================
 Say we have an averaging function:
@@ -127,7 +134,9 @@ Where, in a different file exists a test module:
 
 When should we test?
 ====================
-**ALWAYS.**  The longer answer is that testing either before or after your software 
+**ALWAYS!!!**  
+
+The longer answer is that testing either before or after your software 
 is written will improve your code, but testing after your program is used for 
 something important is too late.
 
@@ -142,91 +151,106 @@ with 200 classes, it may be hard to remember what the widget class does in detai
 you have a test that checks all of the widget's functionality, you can look at the test 
 to remember what it's supposed to do.
 
-**Who tests?**
-In a collaborative coding environment, where many developers contribute to the same code, developers should be responsible individually for testing the functions they create and collectively for testing the code as a whole.
-
-Professionals invariably test their code, and take pride in test coverage, the percent of their functions that they feel confident are comprehensively tested.
-
-**How does one test?**
-
-The type of tests you’ll write is determined by the testing framework you adopt.
-
-**Types of Tests:**
-*Exceptions*
-Exceptions can be thought of as type of runttime test. They alert the user to exceptional behavior in the code. Often, exceptions are related to functions that depend on input that is unknown at compile time. Checks that occur within the code to handle exceptional behavior that results from this type of input are called Exceptions.
-
-*Unit Tests*
-
-Unit tests are a type of test which test the fundametal units a program’s functionality. Often, this is on the class or function level of detail.
-
-To test functions and classes, we want to test the interfaces, rather than the implmentation. Treating the implementation as a ‘black box’, we can probe the expected behavior with boundary cases for the inputs.
-
-In the case of our fix_missing function, we need to test the expected behavior by providing lines and files that do and do not have missing entries. We should also test the behavior for empty lines and files as well. These are boundary cases.
-
-*System Tests*
-
-System level tests are intended to test the code as a whole. As opposed to unit tests, system tests ask for the behavior as a whole. This sort of testing involves comparison with other validated codes, analytical solutions, etc.
-
-*Regression Tests*
-
-A regression test ensures that new code does change anything. If you change the default answer, for example, or add a new question, you’ll need to make sure that missing entries are still found and fixed.
-
-*Integration Tests*
-
-Integration tests query the ability of the code to integrate well with the system configuration and third party libraries and modules. This type of test is essential for codes that depend on libraries which might be updated independently of your code or when your code might be used by a number of users who may have various versions of libraries.
-
-**Test Suites**
-Putting a series of unit tests into a suite creates, as you might imagine, a test suite.
-
-**Elements of a Test**
-
-**Behavior**
-
-The behavior you want to test. For example, you might want to test the fun() function.
-
-**Expected Result**
-
-This might be a single number, a range of numbers, a new, fully defined object, a system state, an exception, etc.
-
-When we run the fun function, we expect to generate some fun. If we don’t generate any fun, the fun() function should fail its test. Alternatively, if it does create some fun, the fun() function should pass this test.
+Who should test?
+================
+In a collaborative coding environment, where many developers contribute to the same code base, 
+developers should be responsible individually for testing the functions they create and 
+collectively for testing the code as a whole.
+
+Professionals often test their code, and take pride in test coverage, the percent 
+of their functions that they feel confident are comprehensively tested.
+
+How are tests written?
+======================
+The type of tests that are written is determined by the testing framework you adopt.
+Don't worry, there are a lot of choices.
+
+Types of Tests
+****************
+**Exceptions:** Exceptions can be thought of as type of runttime test. They alert 
+the user to exceptional behavior in the code. Often, exceptions are related to 
+functions that depend on input that is unknown at compile time. Checks that occur 
+within the code to handle exceptional behavior that results from this type of input 
+are called Exceptions.
+
+**Unit Tests:** Unit tests are a type of test which test the fundametal units of a 
+program's functionality. Often, this is on the class or function level of detail.
+However what defines a *code unit* is not formally defined.
+
+To test functions and classes, the interfaces (API) - rather than the implmentation - should
+be tested.  Treating the implementation as a ack box, we can probe the expected behavior 
+with boundary cases for the inputs.
+
+**System Tests:** System level tests are intended to test the code as a whole. As opposed 
+to unit tests, system tests ask for the behavior as a whole. This sort of testing involves 
+comparison with other validated codes, analytical solutions, etc.
+
+**Regression Tests:**  A regression test ensures that new code does change anything. 
+If you change the default answer, for example, or add a new question, you'll need to 
+make sure that missing entries are still found and fixed.
+
+**Integration Tests:** Integration tests query the ability of the code to integrate 
+well with the system configuration and third party libraries and modules. This type 
+of test is essential for codes that depend on libraries which might be updated 
+independently of your code or when your code might be used by a number of users 
+who may have various versions of libraries.
+
+**Test Suites:** Putting a series of unit tests into a collection of modules creates, 
+a test suite.  Typically the suite as a whole is executed (rather than each test individually)
+when verifying that the code base still functions after changes have been made.
+
+Elements of a Test
+==================
+**Behavior:** The behavior you want to test. For example, you might want to test the fun() 
+function.
 
-**Assertions**
+**Expected Result:** This might be a single number, a range of numbers, a new fully defined 
+object, a system state, an exception, etc.  When we run the fun() function, we expect to 
+generate some fun. If we don't generate any fun, the fun() function should fail its test. 
+Alternatively, if it does create some fun, the fun() function should pass this test.
+The the expected result should known *a priori*.  For numerical functions, this is 
+result is ideally analytically determined even if the fucntion being tested isn't.
 
-Require that some conditional be true. If the conditional is false, the test fails.
+**Assertions:** Require that some conditional be true. If the conditional is false, 
+the test fails.
 
-**Fixtures**
+**Fixtures:**  Sometimes you have to do some legwork to create the objects that are 
+necessary to run one or many tests. These objects are called fixtures as they are not really
+part of the test themselves but rather involve getting the computer into the appropriate state.
 
-Sometimes you have to do some legwork to create the objects that are necessary to run one or many tests. These objects are called fixtures.
+For example, since fun varies a lot between people, the fun() function is a method of 
+the Person class. In order to check the fun function, then, we need to create an appropriate 
+Person object on which to run fun().
 
-For example, since fun varies a lot between people, the fun() function is a member function of the Person class. In order to check the fun function, then, we need to create an appropriate Person object on which to run fun().
+**Setup and teardown:** Creating fixtures is often done in a call to a setup function. 
+Deleting them and other cleanup is done in a teardown function.
 
-**Setup and teardown**
+**The Big Picture:** Putting all this together, the testing algorithm is often:
 
-Creating fixtures is often done in a call to a setup function. Deleting them and other cleanup is done in a teardown function.
+.. code-block:: python
 
-**The Big Picture**
-Putting all this together, the testing algorithm is often:
+    setup()
+    test()
+    teardown()
 
-::
 
-  setUp
-  test
-  tearDown
+But, sometimes it's the case that your tests change the fixtures. If so, it's better 
+for the setup() and teardown() functions to occur on either side of each test. In 
+that case, the testing algorithm should be:
 
+.. code-block::
 
-But, sometimes it’s the case that your tests change the fixtures. If so, it’s better for the setup and teardown functions to occur on either side of each test. In that case, the testing algorithm should be:
+    setup()
+    test1()
+    teardown()
 
-::
+    setup()
+    test2()
+    teardown()
 
-  setUp
-  test1
-  tearDown
-  setUp
-  test2
-  tearDown
-  setUp
-  test3
-  tearDown
+    setup()
+    test3()
+    teardown()
 
 ----------------------------------------------------------
 Python Nose