-
Notifications
You must be signed in to change notification settings - Fork 1
Running tests
valvesss edited this page Oct 11, 2019
·
1 revision
Before ("before") executing our classes and functions you should test them!
We are using the python library unittest that provides solid documentation and good examples (and it works).
Inside our folder /tests you will be able to test the majority of classes and functions. (If you can't find one, please pull request)
Testing example:
python -m unittest -v test_server
Enjoy!