Project

General

Profile

Unit tests » History » Version 5

Rogers, Chris, 12 April 2011 12:40

1 1 Rogers, Chris
h1. Unit Tests
2
3
The idea behind unit tests is "does this function do what I think it's doing". We want to check that, when we write a function, we haven't put any subtle (or not so subtle) errors in the code. Also we want to check that when we change some other function, it doesn't break existing code. So for each function (or maybe pair of functions) we write a test function. These are known as "unit tests".
4
5
h2. C++ unit tests
6
7 3 Rogers, Chris
In C++ we use the google testing framework which has some convenience functions for e.g. equality testing in the presence of floating point errors, setting up common test data, etc. The google test framework should have been installed during the third party libraries. The C++ tests are found at <pre>${MAUS_ROOT_DIR}/tests/cpp_unit</pre> Sconstruct builds a unit test application in build/test_cpp_unit that you can just run from the command line.
8 1 Rogers, Chris
9 4 Rogers, Chris
Go ahead and edit the tests if you need to. We should have one source file for each header file in the main body of the code. Each directory in ${MAUS_ROOT_DIR}/src/common/* should be a directory in ${MAUS_ROOT_DIR}/tests/cpp_unit. If you want to add an extra test, you need to make sure that it includes gtest <pre>#include "gtest/gtest.h"</pre> It should be automatically added to the test executable by scons.
10 1 Rogers, Chris
11
"Google tests documentation":http://code.google.com/p/googletest/w/list
12
13 5 Rogers, Chris
h2. Python unit tests
14 1 Rogers, Chris
15 5 Rogers, Chris
Python unit tests are found at <pre>${MAUS_ROOT_DIR}/tests/unit_test</pre>
16
17 1 Rogers, Chris
h2. A Bit More on Unit Test Concept
18 5 Rogers, Chris
19
The idea behind unit tests is to test at the level of the smallest unit that the code does what we think. We test at the smallest unit so that:
20
21
* test coverage is high
22
* tests are quick to run
23
* we get logically separated functions
24
25
Let's consider each of these points individually
26
27
* _test coverage is high_ - if we imagine the execution path following some branch structure, then we get many more possible execution paths for longer code snippets. So maintaining high test coverage becomes very difficult, and we need many more tests to have good test coverage.
28
* _tests are quick to run_ - the execution time goes as the (number_of_tests)*(length_of_each_test). Now, we have many more tests to keep a good test coverage, and each test is longer because they are testing bigger code snippets. This means tests are slowwww. You want to actually run the tests, and an essential part of this is making sure they are quick enough. 
29
* _we get logically separated functions_ - functions that do simple, understandable things are less likely to be buggy than functions that do complicated or difficult things. The process of really testing if a function does what you intended forces us to make code simple and understandable - otherwise the test becomes difficult to write.