Update of /cvsroot/cpptool/rfta/src/pyrfta/test
In directory sc8-pr-cvs1:/tmp/cvs-serv13378/test
Added Files:
README.txt alltests.py
Log Message:
* added initial structure for python extension
--- NEW FILE: README.txt ---
* Installation instruction.
- You need at least python 2.2 to be installed.
- You need to copy the following file in rfta/:
_pyrfta.pyd
boost_python.dll
rfta_mdr.ext
rftaparser_mdr.ext
The python extension _pyrfta is imported in the rfta package
in rfta/__init__.py.
* Testing
You need to make sure that the top directory (test/) is in the
PYTHONPATH if you are not running script from the top directory.
run alltests.py to run all the tests.
--- NEW FILE: alltests.py ---
#!/usr/bin/env python
#
# $Id: alltests.py,v 1.1 2003/05/29 14:05:55 blep Exp $
import unittest
import rfta.alltests
def suite():
alltests = unittest.TestSuite()
alltests.addTest( rfta.alltests.suite() )
return alltests
if __name__ == '__main__':
unittest.main(defaultTest='suite')
|