• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

engine/System/H07-Oct-2014-1,7251,232

headercheck/H03-May-2022-97

lib/luasocket/H07-Oct-2014-10182

tools/H07-Oct-2014-154109

unitsync/H03-May-2022-339174

validation/H07-Oct-2014-348274

README.mdH A D07-Oct-2014870 2817

README.md

1# Spring RTS game engine - Unit Tests
2
3## README
4
5These are [Unit Tests](http://en.wikipedia.org/wiki/Unit_tests) for the spring
6project. They are useful for automatically testing the engine source code for
7regressions.
8
9Documentation for about Bosot unit tests can be found here:
10* [writing - checks](http://www.boost.org/doc/libs/1_35_0/libs/test/doc/components/test_tools/reference/index.html)
11* [writing - examples](http://www.boost.org/doc/libs/1_46_1/libs/test/doc/html/utf/testing-tools/output-test.html)
12* [writing - examples (from IBM)](http://www.ibm.com/developerworks/aix/library/au-ctools1_boost/index.html?ca=drs-)
13* [executing](http://www.boost.org/doc/libs/1_39_0/libs/test/doc/html/utf/user-guide/runtime-config/reference.html)
14
15### Compiling
16
17To compile all unit-test-suites:
18
19	cmake .
20	make tests
21
22### Using
23
24To run all unit-test-suites:
25
26	make test
27
28