Use pytest instead of unittest for testing
- Replaced
unittest
withpytest
for more flexibility in testing - Improved the encapsulation of variables in the module
oopinterface
, e.g. methods likeqgfield.get_lwa()
are replaced byqgfield.lwa
.
unittest
with pytest
for more flexibility in testingoopinterface
, e.g. methods like qgfield.get_lwa()
are replaced by qgfield.lwa
.