# Unit test # These tests are used to check the isolated simple and small logical units a program is made of. In the case of C++ program they are classes. Thus our unit tests work with classes. ## FuncSim ## `funcsim/test.cpp` is a special simple program that is used to assure that every C++ class implemented is comforming to a defined set of micro-tests. ### Invocation ### After funcsim build there is a `test` binary located in bin dir. Run it. If all units are all right, no output is given. In the other case certain errors are printed. **TODO** Fill me