1. Create Tests
After tests are implemented, we will run them. For this purpose, they have to be discovered as tests. By default, it is configured to find methods starting by “test_” are regarded as test cases. But this can be customized.
2. Enable Test Framework
The framework that we use should be enabled to trigger test cases. (either unittest or pytest) On VSCode, this can be done over Command Palette (Ctrl + Shift + P): Python Configure Tests