Fading Coder

One Final Commit for the Last Sprint

Customizing Test Case Names in DDT for Readable HtmlTestRunner Reports

When conducting API testing using unittest, DDT, and Excel, test reports generated with HtmlTestRunner often display generic test case names such as test_api_1, test_api_2, test_api_3. These names lack clarity and make it difficult to identify specific test scenarios at a glance. Improving test case...

Implementing Data-Driven Tests with Python unittest and ddt

Overview of ddt When automating API tests, a single endpoint typically requires validation against multiple input combinations covering positive scenarios, boundary conditions, and error cases. Manually writing individual test methods for each permutation creates redundant code. The ddt (Data-Driven...