最佳答案
I'm using pytest to test my app. pytest supports 2 approaches (that I'm aware of) of how to write tests:
test_feature.py -> class TestFeature -> def test_feature_sanity
test_feature.py -> def test_feature_sanity
Is the approach of grouping tests in a class needed? Is it allowed to backport unittest builtin module? Which approach would you say is better and why?