Python Forum
Tools for black box and glass box (white box) testing - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: General (https://python-forum.io/forum-1.html)
+--- Forum: News and Discussions (https://python-forum.io/forum-31.html)
+--- Thread: Tools for black box and glass box (white box) testing (/thread-27873.html)



Tools for black box and glass box (white box) testing - Emekadavid - Jun-25-2020

Please can someone recommend a tool for black box testing and white box (or glass box) testing. I need to do testing on some code and need them.or maybe unit and regression tests for python code.
Thanks


RE: Tools for black box and glass box (white box) testing - Larz60+ - Jun-25-2020

Testing packages available: https://pypi.org/search/?q=testing&o=-zscore
You will have to look through the list and find what's appropriate.
In addition, see (on unit testing): https://docs.python.org/3/library/unittest.html


RE: Tools for black box and glass box (white box) testing - ndc85430 - Jun-25-2020

pytest is another testing framework.


RE: Tools for black box and glass box (white box) testing - Emekadavid - Jun-25-2020

Thanks everyone. Now I have to start doing the tests. I think I have something to start with.