News

Scripts demonstrating the Python ‘unittest’ module, a unit testing framework. Unittest supports test automation, sharing of setup and shutdown code for tests, aggregation of tests into collections, ...
Scripts demonstrating the Python ‘unittest’ module, a unit testing framework. Unittest supports test automation, sharing of setup and shutdown code for tests, aggregation of tests into collections, ...
I'm working on writing tests for a Python module that looks like this (edited for compactness and clarity, of course): try: import FreeCAD Console = FreeCAD.Console # This is a function except ...