Swarm-NG
1.1
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
run.py
Go to the documentation of this file.
1
#!/usr/bin/env python2
2
## @file run.py Runner for all the unittests. Execute this file from the interpreter to run all the unit tests.
3
#
4
# for more information on command-line arguments, look at
5
# <a href="http://docs.python.org/2/library/unittest.html#command-line-interface">Python unittest library documentation</a>.
6
import
unittest, sys
7
from
os.path
import
dirname, realpath
8
sys.path.append(dirname(dirname(realpath(__file__))))
9
10
from
trivial
import
*
11
from
parabolic_collision
import
ParabolicTest
12
from
bdb_concurrent
import
BDBConcurrencyTest
13
from
collision_course
import
CollisionCourseTest
14
15
if
__name__ ==
'__main__'
:
16
unittest.main()
swarm
py
tests
run.py
Generated on Sun Jul 21 2013 11:11:53 for Swarm-NG by
1.8.4